-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateDetails.html
More file actions
42 lines (38 loc) · 1.67 KB
/
Copy pathupdateDetails.html
File metadata and controls
42 lines (38 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="src/script.js"></script>
<script src="src/User.js"></script>
</head>
<body>
<div id="mainContainer">
<div id="topContainer">
<div id="nav-placeholder"></div>
<div id="mainViewContainer">
<div class="userDetails">
<div class="container borderBottom">
<h2>EMAIL</h2>
<input type="text" class="updatedEmail" name="updatedEmail" placeholder="Email address..." value="">
<span class="message"></span>
<button class="button" onclick="updateEmail('email')">Gem ny email</button>
</div>
<div class="container">
<h2>PASSWORD</h2>
<input type="password" class="oldPassword" name="oldPassword" placeholder="Current password">
<input type="password" class="newPassword1" name="newPassword1" placeholder="New password">
<input type="password" class="newPassword2" name="newPassword2" placeholder="Confirm password">
<span class="message"></span>
<button class="button" onclick="updatePassword('password')">Gem nyt password</button>
</div>
</div>
</div>
</div>
</div>
<div id="nowPlaying-placeholder"></div>
</body>
</html>