-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateProfile.html
More file actions
30 lines (26 loc) · 1.13 KB
/
updateProfile.html
File metadata and controls
30 lines (26 loc) · 1.13 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
<html>
<head>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/register.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?familyIDiv=Ubuntu"
rel="stylesheet"
/>
</head>
<body id="newBody">
<span id="title">Update Profile</span>
<a href="register.html">
<button type="button" id="CloseButton" class="closeButton"></button>
</a>
<div id="loginDiv">
<input type="text" class="firstnameInput" placeholder="First" /><br />
<input type="text" class="lastnameInput" placeholder="Last" /><br />
<input type="text" class="registerUsernameInput" placeholder="Username" /><br />
<input type="password" class="registerPasswordInput" placeholder="Password" /><br />
<input type="password" class="registerRetypePasswordInput" placeholder="Retype Password" /><br />
<button type="button" id="registerButton" class="registerPageButton" onclick="doLogin();">Update</button>
<span id="loginResult"></span>
</div>
</body>
</html>