-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuser.html
More file actions
80 lines (72 loc) · 3 KB
/
user.html
File metadata and controls
80 lines (72 loc) · 3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FrontDesk</title>
<link rel="stylesheet" href="./contents/bootstrap/4.1.3/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/Linearicons-Free-v1.0.0/icon-font.min.css">
<link rel="stylesheet" type="text/css" href="vendor/css-hamburgers/hamburgers.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animsition/css/animsition.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" href="./css/main.css" />
<link rel="stylesheet" href="./css/events.css" />
<link rel="stylesheet" href="./css/color.css" />
<script>
let $ = require('jquery');
</script>
<script>
require('popper.js');
</script>
<script>
require('bootstrap');
</script>
</head>
<body class="overflow-hidden">
<div class="limiter overflow-hidden" style="padding:20px;">
<center>
<div style="align-items: center; width:260px; margin-top:30px;">
<div id="user">
<span id="userIcon" class="side-button sb-xl" data-placeholder=""></span>
<div id="USN"></div>
<div id="name"></div>
<div id="phone"></div>
<div class="d-flex" style="width:100%;justify-content:center;">
<div id="sem"></div>
<div id="section" style="margin-right:10px;margin-left:10px;"></div>
<div id="dept"></div>
</div>
<div id="role"></div>
<div class="container-login100-form-btn" style="margin-top:10%;">
<button id="change1" class="login100-form-btn">
CHANGE PASSWORD
</button>
</div>
</div>
<form id="changeForm" class="login100-form validate-form p-b-33 p-t-5" style="display: none;">
<div class="wrap-input100 validate-input" data-validate="Enter Section">
<input class="input100" type="password" id="oldpass" placeholder="Old Password">
</div>
<div class="wrap-input100 validate-input" data-validate="Enter Dept">
<input class="input100" type="password" id="newpass" placeholder="New Password">
</div>
<div class="wrap-input100 validate-input" data-validate="Enter Dept">
<input class="input100" type="password" id="confirm" placeholder="Confirm Password">
</div>
<div class="container-login100-form-btn" style="margin-top:10%;">
<button id="change2" class="login100-form-btn">
CHANGE
</button>
</div>
</form>
</div>
</center>
<script src="./js/user.js"></script>
</div>
</body>
</html>