This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
155 lines (147 loc) · 4.68 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<title>Travel Pack</title>
<!-- Google Font - Montserrat | REF: http://bit.ly/2xQ4KNM -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,600" rel="stylesheet">
<!-- Font Awesome | REF: http://fontawesome.io/license/ -->
<script src="https://use.fontawesome.com/9f0f64771e.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- jQuery plugings | REF: https://jquery.com/ -->
<script type="text/javascript" src="js/jquery-3.2.1.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<!-- Page Options -->
<link rel="icon" href="images/logo.png">
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
</head>
<body class="profile">
<!-- Navigation Bar -->
<div class="nav-container">
<ul class="nav-bar">
<li>
<a href="events.html">
<img id="events" class="svg nav-btn-svg" src="images/icons/calendar.png" alt="Events"/>
</a>
</li>
<li>
<a href="map.html">
<img id="map" class="svg nav-btn-svg" src="images/icons/map.png" alt="Map"/>
</a>
</li>
<li>
<a href="#">
<img id="profile" class="svg nav-btn-svg nav-btn-svg-selected" src="images/icons/profile-active.png" alt="Profile"/>
</a>
</li>
</ul>
</div>
<div class="edit-profile">
<ul class="edit-header">
<li id="cancel-edit">Cancel</li>
<li>Edit Profile</li>
<li id="save-edit">Done</li>
</ul>
<div id="edit-cont-id" class="edit-container">
<div id="edit-profile-pic" class="profile-pic"></div>
<p id="change-pro-pic" class="profile-p">Change Profile Picture</p>
<!-- Edit Details -->
<table id="edit-profile-details">
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Name</h1>
</td>
<td>
<input id="edit-name" class="text-input general-input-fields" type="text" name="name" value="Jai Paul">
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Username</h1>
</td>
<td>
<input id="edit-uname" class="text-input general-input-fields" type="text" name="uname" value="@jaipaul">
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Email</h1>
</td>
<td>
<input id="edit-email" class="text-input general-input-fields" type="text" name="email" value="[email protected]">
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Password</h1>
</td>
<td>
<input id="edit-password" class="text-input general-input-fields" type="password" name="pwd" value="*********">
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Bio</h1>
</td>
<td>
<textarea id="edit-bio" class="text-input" type="textarea" name="pwd" value="*********">Hey I'm Jai. I love hikes and adventures! Food is the best, too.</textarea>
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Interests</h1>
</td>
<td>
<textarea id="edit-interests" class="text-input" type="textarea" name="pwd" value="*********">Poker, Sports, Video Games, Hiking</textarea>
</td>
</tr>
<tr class="edit-details-line">
<td>
<h1 class="edit-profile-h1">Favourite Tags</h1>
</td>
<td class="relative">
<input id="edit-tags" class="text-input general-input-fields" type="text" name="tags" value="AFL,Swimming,Beach,Flying,Waterfall">
<p id="edit-subheading" class="edit-profile-h1">Separate with commas</p>
</td>
</tr>
</table>
</div>
</div>
<div class="profile-container">
<!-- Settings -->
<span><i id="profile-settings" class="fa fa-pencil-square-o" aria-hidden="true"></i></span>
<!-- Profile Pic -->
<div class="profile-pic"></div>
<!-- Details -->
<div class="profile-main-details">
<p id="profile-name" class="main-p">Jai Paul</p>
<p class="main-p">21</p>
</div>
<div class="profile-minor-details">
<div id="bio">
<h1 class="profile-h1">Bio</h1>
<p class="profile-p">Hey I'm Jai. I love hikes and adventures! Food is the best, too.</p>
</div>
<div id="current-location">
<h1 class="profile-h1">Currently At</h1>
<p class="profile-p">Brisbane, Australia.</p>
</div>
<div id="interests">
<h1 class="profile-h1">Interests</h1>
<p class="profile-p">Poker, Sports, Video Games, Hiking</p>
</div>
<div id="profile-tags">
<h1 class="profile-h1">Favourite Tags</h1>
<ul class="tags">
<li>Drinking</li>
<li>Swimming</li>
<li>Beach</li>
<li>Partying</li>
<li>Movies</li>
<li>Waterfalls</li>
</ul>
</div>
</div>
</div>
</body>
</html>