git ssb

2+

Zach! / onboarding-link-generator



Tree: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207

Files: 9d9d5dc6b4e2f64b14f338c2ea2e98e182854207 / steps / sender.py

1543 bytesRaw
1from steps import clear_screen
2
3def main(details, imported_details):
4 ascii_art = """
5
6███████╗███████╗███╗ ██╗██████╗ ███████╗██████╗
7██╔════╝██╔════╝████╗ ██║██╔══██╗██╔════╝██╔══██╗
8███████╗█████╗ ██╔██╗ ██║██║ ██║█████╗ ██████╔╝
9╚════██║██╔══╝ ██║╚██╗██║██║ ██║██╔══╝ ██╔══██╗
10███████║███████╗██║ ╚████║██████╔╝███████╗██║ ██║
11╚══════╝╚══════╝╚═╝ ╚═══╝╚═════╝ ╚══════╝╚═╝ ╚═╝
12
13 """
14 clear_screen.main()
15 print(ascii_art)
16 if imported_details['sender']:
17 details['sender'] = imported_details['sender']
18 print("~*~*~*~ This Email will be signed with '{}' as your name.\n".format(details['sender']))
19 finish_this =input("Almost there. press any key to finish!")
20 else:
21 details['sender'] = input("One last thing: What's your name(or the name the invitee knows you by?)\n> ")
22if __name__ == "__main__":
23 main(details, imported_details)
24

Built with git-ssb-web