-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedit_user.html
More file actions
117 lines (103 loc) · 4.51 KB
/
Copy pathedit_user.html
File metadata and controls
117 lines (103 loc) · 4.51 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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" />
<link rel="stylesheet" href="./css/view_event.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:40px;">
<div class="d-flex header no-select">
<h1 style="color: black;" id="header">Coordinators</h1>
</div>
<hr />
<div id="body">
<div id="user" class="d-flex" style="width:100%;justify-content:center;">
<span id="userIcon" class="side-button sb-xl" data-placeholder=""></span>
<div id="userInfo" style="margin-top:15px;"></div>
</div>
<div id="AllUsers" style="height:420px; overflow-y: scroll;">
<table class="table tableContent">
<thead>
<tr>
<th scope="col">USN</th>
<th scope="col">Name</th>
<th scope="col">Phone</th>
<th scope="col">Class</th>
<th scope="col">Role</th>
</tr>
</thead>
<tbody id="tableBody">
</tbody>
</table>
</div>
<form id="changeForm" class="login100-form validate-form p-b-33 p-t-5">
<div width="100%" style="display: flex; flex-direction: row; flex-wrap: wrap; width:100%;">
<div class="wrap-input100 validate-input" style="width:30%; margin-right: 4%;">
<input class="input100" type="text" id="name" placeholder="Name">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:30%; margin-right: 4%;">
<input class="input100" type="text" id="phone" placeholder="Phone">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:30%;">
<input class="input100" type="text" id="role" placeholder="Role">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:30%; margin-right: 4%;">
<input class="input100" type="text" id="dept" placeholder="Dept">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:30%; margin-right: 4%;">
<input class="input100" type="number" id="sem" placeholder="Sem">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:30%;">
<input class="input100" type="text" id="section" placeholder="Section">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:48%; margin-right: 4%;">
<input class="input100" type="password" id="pass" placeholder="New Password">
<span class="focus-input100" data-placeholder=""></span>
</div>
<div class="wrap-input100 validate-input" style="width:48%;">
<input class="input100" type="password" id="confirm" placeholder="Confirm Password">
<span class="focus-input100" data-placeholder=""></span>
</div>
</div>
<br>
<div class="container-login100-form-btn">
<button id="editButton" class="login100-form-btn">
EDIT
</button>
</div>
</form>
</div>
<script src="./js/edit_user.js"></script>
</div>
</body>
</html>