-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_officer.html
75 lines (70 loc) · 2.54 KB
/
create_officer.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Officer</title>
<link rel="stylesheet" href="project2.css">
</head>
<body>
<h2>Create Officer</h2>
<table cellpadding="15" cellspacing="2" align="center">
<th class="row1">Scheme Name</th>
<tr>
<td class="col1">Name
<br><span id="e1"></span>
</td>
<td class="col2"><input type="text" name="Name" id="Name" placeholder="Name"></td>
</tr>
<th class="row1">Email</th>
<tr>
<td class="col1">Email
<br><span id="e2"></span>
</td>
<td class="col2"><input type="email" name="Email" id="Email" placeholder="Email"></td>
</tr>
<th class="row1">Password</th>
<tr>
<td class="col1">Password
<br><span id="e3"></span>
</td>
<td class="col2"><input type="password" name="Password" id="Password" placeholder="Password"></td>
</tr>
<th class="row1">Mobile</th>
<tr>
<td class="col1">Mobile
<br><span id="e4"></span>
</td>
<td class="col2"><input type="number" name="Mobile" id="Mobile" class="Mobile"></td>
</tr>
<th class="row1">Location</th>
<tr>
<td class="col1">Location
<br><span id="e5"></span>
</td>
<td class="col2"><input type="text" name="Location" id="Location" placeholder="Location"></td>
</tr>
<th class="row1">College</th>
<tr>
<td class="col1">College
<br><span id="e6"></span>
</td>
<td class="col2"><input type="text" name="College" id="College" placeholder="College"></td>
</tr>
<tr colspan="2" align="center">
<td>
<button type="submit" class="submit1" onclick="myFunction()">Submit</button>
</td>
<td>
<button type="reset" class="reset1" onclick="resetProjectDetails()">Clear</button>
</td>
</tr>
<tr colspan="1" align="center">
<td>
<button type="reset" class="reset2" onclick="resetProjectDetails()">Clear</button>
</td>
</tr>
</table>
<!-- <script src="project.js"></script> -->
</body>
</html>