-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_new_admin.php
More file actions
45 lines (44 loc) · 1.75 KB
/
admin_new_admin.php
File metadata and controls
45 lines (44 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head align='center'>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Create New Admin</title>
<link rel="stylesheet" href="css/admin_new_admin.css" />
<link rel="stylesheet" href="E:/xampp/htdocs/Museum/fonts/fontawesome-free-5.10.2-web/css/all.min.css" />
</head>
<body style="background:url(images/lbm.jpg) no-repeat; color:black; background-size: 100% 100%;">
<center>
<h2>CREATE ADMIN</h2>
<div class="data_insert_box">
<form action="admin_new_admin_code.php" method="POST">
<table>
<tr class="textbox">
<td>NEW ID : </td><td><input type="text" placeholder=" Enter New ID" name="adid" value="" required></td>
</tr>
<tr class="textbox">
<td>NAME : </td><td><input type="text" placeholder=" Enter Name" name="name" value="" required></td>
</tr>
<tr class="textbox">
<td>EMAIL : </td><td><input type="email" placeholder=" Enter Email" name="email" value="" required></td>
</tr>
<tr class="textbox">
<td>PHONE : </td><td><input type="text" placeholder=" Enter Phone" name="phone" value="" required></td>
</tr>
<tr class="textbox">
<td>D.O.B : </td><td><input type="date" placeholder=" Enter D.O.B" name="dob" value="" required></td>
</tr>
<tr class="textbox">
<td>GENGER : </td><td><input type="text" maxlength='1' placeholder=" Enter Gender" name="gender" value="" required></td>
</tr>
<tr class="textbox">
<td>NEW PASSWORD : </td><td><input type="password" placeholder=" Enter Password" name="password" value="" required></td>
</tr>
<tr>
<td colspan='2'><input class="btn" type="submit" value="Add"></td>
</tr>
</table>
</form>
</div>
</body>
</html>