forked from ammarlodhi255/travel-and-tour-agency-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
49 lines (49 loc) · 1.46 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./profile.css" />
<title>Login</title>
</head>
<body>
<div class="outer-block">
<div onclick="back_to_home()" class="close-btn">×</div>
<section class="profile-body">
<div>
<img id="dp" src="" alt="profile image" />
<input type="file" id="cover" />
</div>
<br />
<div class="side-block">
<div>
<label for="name">Name:</label>
<h1 id="name"></h1>
</div>
<div>
<label for="email">Email:</label>
<h1 id="email"></h1>
</div>
<div>
<label for="phone">Phone:</label>
<h1 id="phone"></h1>
</div>
<div>
<label for="password">Password:</label>
<h1 id="password"></h1>
</div>
<div class="profile-element">
<button class="signout" onclick="sign_out()">Sign Out</button>
</div>
<div class="profile-element">
<button class="delete" onclick="delete_account()">
Delete my account
</button>
</div>
</div>
</section>
</div>
<script type="text/javascript" src="./profile.js"></script>
</body>
</html>