-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
36 lines (30 loc) · 999 Bytes
/
profile.html
File metadata and controls
36 lines (30 loc) · 999 Bytes
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
<!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">
<title>User SignUp</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header style="display: flex; flex-direction: row; justify-content: space-between; ">
<h1 >Header</h1>
<div style="display: flex; flex-direction: row;;">
<h1 > <a href="index.html"> SignUp</a></h1>
<h1 > <a href="profile.html"> Profile </a></h1>
</div>
</header>
<hr>
<section>
<h1>Profile</h1>
<h1>Full name : <span class="pro"></span></h1>
<h1>Email : <span class="pro"></span></h1>
<h1>password : <span class="pro"></span></h1>
<br>
<br>
<button id="Signout">Signout</button>
</section>
<script src="script.js"></script>
</body>
</html>