-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
44 lines (42 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="css/profile.css">
</head>
<body>
<div class="in_body">
<header>
<div class="image_header">
<img src="header white.png" class="logo" width="250" >
</div>
<div class="nav_bar">
<ul>
<li class="home"><a href="join queue.html">Home</a></li>
<li class="create_queue"><a href="create queue.html">Create queue</a></li>
<li class="my_queues"><a href="queue admin.html">My queues</a></li>
<li class="about"><a href="about.html">About</a></li>
<li class="profile"> <a href="login.html">Log Out</a> </li>
<li class="profile"> <a href="profile.html">Profile</a> </li>
</ul>
</div>
</header>
<div class="box">
<h2>Profile</h2>
<form>
<div class="inputBox">
<input type="text" name="" required="">
<label>some [email protected]</label>
</div>
<div class="inputBox">
<input type="text" name="" required="">
<label>likvi</label>
</div>
<input type="submit" name="" value="Submit">
</form>
</div>
</div>
</body>
</html>