-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
64 lines (55 loc) · 2.39 KB
/
profile.html
File metadata and controls
64 lines (55 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="StyleSheet" href="/CSS/NavFoot.css">
<link rel="StyleSheet" href="/CSS/profile.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="/JS/script/Cookies.js"></script>
<script src="/JS/script/jQ-Dev.js"></script>
<title>Profile</title>
</head>
<body onload="checkl()">
<div id="logiNav">
<input type="submit" value="Login" class="btn" id="logBtn" onclick="login()">
<input type="submit" value="Register" class="btn" id="regesterBTN" onclick="register()">
<input type="submit" value="Logout" class="btn" id="logoutBTN" onclick="logout()">
</div>
<div id="nav">
<img src="/img/takeit.jpeg" id="logo" onclick="home()">
<a id="home" class="navv" href="home.html">Home</a>
<a id="About" class="navv"href="about.html">About</a>
<a id="Profile" class="navv"href="profile.html">Profile</a>
<a id="Lines" class="navv" onclick="checkLinesBook()">Lines</a>
<a id="Trips" class="navv" onclick="checkTrip();">Trips</a>
<h6 id="name" title='Welcome abroad!'></h6>
</div>
<table id="form_edit">
<tr>
<td class='editTable' ><div id='pimgDiv'><img src="/img/profile/profile.jpg" id="profileImg"></div></td>
<td class='editTable'><div id='profDiv'>
<form>
<table>
<tr>
<td><label for="Name" class="editLbl">Username </label></td>
<td><input id="UserName" name="Name" type="text" class="textbx" disabled></td>
</tr>
<tr>
<td><label for="Email"class="editLbl">Email </label></td>
<td><input id="UserEmail" name="Email" type="text" class="textbx" disabled></td>
</tr>
<tr>
<td><label for="Name"class="editLbl">Password </label></td>
<td><input id="UserPassword" name="Password" type="password" class="textbx" disabled></td>
</tr>
</table>
<a class="fas fa-pencil-alt" onclick="edit()" id='editBtn'></a>
<a class="far fa-save" onclick="savee()" id='saveBtn'></a>
</form>
</td></tr></div>
</table>
<div id="footer">
Copyrights 2020 © All Rights Reserved.
</div>
<script src="/JS/profile.js"></script>
</body>
</html>