-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproj2.py
216 lines (164 loc) · 6.44 KB
/
proj2.py
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
from flask import Flask, request, render_template, redirect, url_for
import mysql.connector
from flask_mail import Mail, Message
app = Flask(__name__)
app.config['MAIL_SERVER'] = 'smtp.gmail.com'
app.config['MAIL_PORT'] = 587
app.config['MAIL_USE_TLS'] = True
app.config['MAIL_USERNAME'] = '' #email id
app.config['MAIL_PASSWORD'] = '' # use the app password from google accounts so u can acess the mail to send mail to the default sender
app.config['MAIL_DEFAULT_SENDER'] = ''
db = mysql.connector.connect(
host="localhost",
user="root",
password="",#password
database="stu_reg"
)
cursor = db.cursor()
mail = Mail(app)
@app.route('/')
def login_form():
return render_template('pg2.html')
@app.route('/pg2', methods=['POST'])
def login():
try:
user = request.form['userid']
passw = request.form['pass']
cursor.execute("SELECT pass FROM username WHERE user = %s", (user,))
result = cursor.fetchone()
if result:
stored_pass = result[0]
if stored_pass == passw:
return redirect(url_for('student_dashboard'))
else:
return '''
The given password is wrong. Try Again...
<a href="/">Go back to login</a>'''
else:
return '''
<h5>User ID does not exist. Create one.</h5>
<a href="/pg2reg.html">Registration Form</a>'''
except mysql.connector.Error as err:
return f"Error: {err}"
@app.route('/pg2reg.html')
def registration_form():
return render_template('pg2reg.html')
@app.route('/pg2reg', methods=['GET', 'POST'])
def register():
try:
nmf = request.form['namef']
nml = request.form['namel']
dob = request.form['dob']
gender = request.form['gender']
email = request.form['email']
dept = request.form['dept']
preuser = request.form['prefuser']
cursor.execute("SELECT * FROM username WHERE email = %s", (email,))
result = cursor.fetchone()
if result:
return '''
<h1>Email already exists! Please use a different email.</h1>
<a href="/">Go back to the form</a>'''
else:
cursor.execute("INSERT INTO username (namef, namel, gender, dob, email, dept, user, pass) VALUES (%s, %s, %s, %s, %s, %s, %s, NULL)", (nmf, nml, gender, dob, email, dept, preuser))
db.commit()
msg = Message(
subject="New User Registration Details",
recipients=[""], # admin email
body=f"""
A new user has registered:
First Name: {nmf}
Last Name: {nml}
Date of Birth: {dob}
Gender: {gender}
Email: {email}
Department: {dept}
Preferred Username: {preuser}
Admin Dashboard Link: {url_for('admin_dashboard', _external=True)}
Please create a password for this user and email it to them at {email}.
"""
)
mail.send(msg)
return render_template('success_registration.html')
except mysql.connector.Error as err:
return f"Error: {err}"
@app.route('/student_details')
def student_dashboard():
return "Welcome to the student details page!"
@app.route('/admin_dashboard')
def admin_dashboard():
try:
cursor.execute("SELECT namef, namel, dob, gender, email, dept, user FROM username")
users = cursor.fetchall()
return render_template('admin_dashboard.html', users=users)
except mysql.connector.Error as err:
return f"Error: {err}"
@app.route('/set_password/<username>', methods=['GET', 'POST'])
def set_password(username):
if request.method == 'POST':
password = request.form['password']
try:
# Update the password
cursor.execute("UPDATE username SET pass = %s WHERE user = %s", (password, username))
db.commit()
# Fetch the user's email
cursor.execute("SELECT email FROM username WHERE user = %s", (username,))
user_email = cursor.fetchone()[0]
# Send email to the user with their username and password
msg = Message(
subject="Your Login Credentials",
recipients=[user_email],
body=f"""
Hello,
Your account has been created. Here are your login details:
Username: {username}
Password: {password}
Please log in and update your password immediately for security purposes.
Regards,
Admin Team
"""
)
mail.send(msg)
return redirect(url_for('admin_dashboard'))
except mysql.connector.Error as err:
return f"Error: {err}"
return '''
<h1>Set Password for User</h1>
<form method="POST">
<label for="password">Enter Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Set Password</button>
</form>
'''
@app.route('/create_password/<username>', methods=['GET', 'POST'])
def create_password_form(username):
if request.method == 'POST':
password = request.form['password']
try:
# Update the user's password in the database
cursor.execute("UPDATE username SET pass = %s WHERE user = %s", (password, username))
db.commit()
# Fetch the user's email
cursor.execute("SELECT email FROM username WHERE user = %s", (username,))
user_email = cursor.fetchone()[0]
# Send email to the student with login details
msg = Message(
subject="Your Login Credentials",
recipients=[user_email],
body=f"""
Hello,
Your account has been created. Here are your login details:
Username: {username}
Password: {password}
Please log in and update your password immediately for security purposes.
Regards,
Admin Team
"""
)
mail.send(msg)
return redirect(url_for('admin_dashboard'))
except mysql.connector.Error as err:
return f"Error: {err}"
return render_template('create_password.html', username=username)
if __name__ == '__main__':
app.run(debug=True)