-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUserProfile.html
75 lines (70 loc) · 2.03 KB
/
UserProfile.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Crisp_N_Crumps | Online Food Delivery App</title>
<link rel="stylesheet" href="style1.css" />
</head>
<body background="img/reverse.png">
<nav id="navbar1">
<div id="logo1">
<img
src="img/logo11.png"
alt="Image not found. Reload or check network connection."
/>
</div>
</nav>
<section id="home1">
<br />
<h3 class="h-primary">User Profile</h3>
</section>
<div class="login-box" style="position: relative; left: 542px; top: 60px">
<form name="loginForm" action="" method="post">
<h5>User Name:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="User Name"
name="username"
value="{{request.form.username }}"
/>
</div>
<br />
<h5>Email ID:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Email ID"
name="usermailid"
value="{{request.form.usermailid }}"
/>
</div>
<br />
<h5>New Password:</h5>
<div class="form-group has-feedback">
<input
type="password"
placeholder="Password"
name="password"
value="{{request.form.password }}"
/>
</div>
<br />
<h5>Phone No.:</h5>
<div class="form-group has-feedback">
<input
type="text"
placeholder="Phone no."
name="userphoneno"
value="{{request.form.userphoneno}}"
/>
</div>
<br />
<input class="btn2" type="submit" value="Register" />
</form>
<br />
</div>
</body>
</html>