-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
81 lines (64 loc) · 1.76 KB
/
profile.html
File metadata and controls
81 lines (64 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>NeighbourLink - My Profile</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="phone">
<div class="header">
<div class="brand">NeighbourLink</div>
<p>Offer rides or find one</p>
</div>
<div class="content">
<h2>My Profile</h2>
<div class="row">
<div>
<label>First Name*</label>
<input value="Emma">
</div>
<div>
<label>Last Name*</label>
<input value="Clarke">
</div>
</div>
<label>Phone number*</label>
<input placeholder="04XX XXX XXX">
<label>Email (Optional)</label>
<input placeholder="emma@email.com">
<label>Date of Birth*</label>
<div class="row">
<input placeholder="DD">
<input placeholder="MM">
<input placeholder="YYYY">
</div>
<label>Address*</label>
<input placeholder="Street Address">
<label>Password*</label>
<input type="password" value="password">
<label>Profile Photo</label>
<a class="upload-button" href="#">Upload a photo</a>
<a class="button" href="dashboard.html">Edit Profile →</a>
<p style="text-align:center;">
Already have an account?
<a href="dashboard.html" style="color:#65a17d; font-weight:bold;">Log in</a>
</p>
</div>
<div class="bottom-nav">
<a href="dashboard.html">
<span class="nav-icon">◎</span>
<span>Dashboard</span>
</a>
<a href="confirmed.html">
<span class="nav-icon">◫</span>
<span>My Ride</span>
</a>
<a href="profile.html">
<span class="nav-icon">♡</span>
<span>Profile</span>
</a>
</div>
</div>
</body>
</html>