This repository was archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchange.html
More file actions
57 lines (47 loc) · 1.5 KB
/
change.html
File metadata and controls
57 lines (47 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>e-Študent</title>
<link href="images/e.png" rel="shortcut icon" />
<link rel="stylesheet" href="./css/min.css" />
</head>
<body onload="getData('change');">
<header class="header">
<img src="images/logo.png" alt="Logo e-Študent" />
<h1>
<span>e-</span>Študent
</h1>
</header>
<div class="data">
<nav id="navbar" class="left navbar">
</nav>
<div id="person" class="person left">
<button id="dropdownmenu" class="dropbtn"></button>
<div class="dropdown-content">
<a href="change.html">Change password</a>
<a onclick="logout()">Log out</a>
</div>
</div>
<div id="general" class="left general">
<div class="error">
</div>
<form name="changePass" class="login" action="#">
<label>
New password:
<br />
<input name="password1" type="password" class="input" placeholder="New password" required/>
</label>
<label>
Confirm new password:
<br />
<input name="password2" type="password" class="input" placeholder="Confirm new password" required/>
</label>
<br />
<a id="submit" class="submit" onclick="changePwd()">Change</a>
</form>
</div>
</div>
<script type="text/javascript" src="./javascript/min.js"></script>
</body>
</html>