-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreateAdmin.jsp
More file actions
61 lines (28 loc) · 1.01 KB
/
createAdmin.jsp
File metadata and controls
61 lines (28 loc) · 1.01 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
<html>
<head>
<title>Sign-Up</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background:rgba(255,255,255,0.8)">
<div class="form" >
<div id="signup">
<h1>Create Admin</h1>
<form action="adminreg.jsp" method="post">
<div >
<div >
<input type="text" name="fname" required autocomplete="off" placeholder="Name*" style="width:100%">
</div>
<br>
</div>
<div class="field-wrap">
<input type="text"required autocomplete="off" name="email" placeholder="User Id">
</div>
<div class="field-wrap">
<input type="password"required autocomplete="off" name="pass" placeholder="Set Password*">
</div>
<button type="submit" class="button"/>Create</button>
</form>
</div>
</div>
</body>
</html>