Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.17 KB

README.md

File metadata and controls

48 lines (31 loc) · 1.17 KB

Mailbox signup authentication and login

标签(空格分隔): signup authentication login


I rewrite my homework in Modern Web Program class, I wrote it by html5, jquery, nodejs before, now I rebuild with python flask and here it is its demo


run_signup.py

Because I make this small project a package, so it's necessary to use a run.py to run the project (just a py file exactly outside this package no matter what you name it)

run.py should look like below:

from signup import app

app = app
if __name__ == "__main__":
	app.run(host = "0.0.0.0", port = 8080)

Install modules

pip install -r requirements.txt

Renderings

Rendering

signup

signup

login

login

detail

detail