-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.py
More file actions
69 lines (58 loc) · 1.93 KB
/
app.py
File metadata and controls
69 lines (58 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from flask import Flask, render_template, json, request
from flaskext.mysql import MySQL
from werkzeug import generate_password_hash, check_password_hash
mysql = MySQL()
app = Flask(__name__)
# MySQL configurations
app.config['MYSQL_DATABASE_USER'] = 'root'
app.config['MYSQL_DATABASE_PASSWORD'] = 'melo8946'
app.config['MYSQL_DATABASE_DB'] = 'BucketList'
app.config['MYSQL_DATABASE_HOST'] = '127.0.0.1'
mysql.init_app(app)
#-------------------------------------------------------------------------------
@app.route('/')
def main():
#return "Welcome!"
return render_template('ProjectPage.html')
#return render_template('ProjectPage.html')
# Creating a Sign In interface
@app.route('/showSignIn')
def showSignIn():
return render_template('checkout.html')
# Creating a Signup interface
@app.route('/showSignUp')
def showSignUp():
return render_template('signup.html')
# Implementing the Signup method
@app.route('/signUp',methods=['POST','GET'])
def SignUp():
try:
#Read the posted values from the UI
_name = request.form['inputName']
_email = request.form['inputEmail']
_password = request.form['inputPassword']
# validate the received values
if _name and _email and _password:
# All Good, let's call mysql
conn = mysql.connect()
cursor = conn.cursor()
_hashed_password = generate_password_hash(_password)
cursor.callproc('sp_createUser',(_name,_email,_hashed_password))
data = cursor.fetchall()
if len(data) is 0:
conn.commit()
return json.dumps({'message':'User created successfully !'})
else:
return json.dumps({'error':str(data[0])})
print('Not working')
else:
return json.dumps({'html':'<span>Enter the required fields</span>'})
print('Enter the required fields')
except Exception as e:
return json.dumps({'error':str(e)})
finally:
cursor.close()
conn.close()
#------------------------------------------------------------------------------
if __name__=="__main__":
app.run(port=5000)