-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_management.html
More file actions
62 lines (52 loc) · 1.98 KB
/
user_management.html
File metadata and controls
62 lines (52 loc) · 1.98 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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<center> <h1>Library Management System</h1> </center>
<link rel="stylesheet" type="text/css" href="style.css">
<title> Library Management System </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="header">
<form name="adduser" method="post" action="add_user.php">
<center><table cellspacing="5">
<tr>
<td></td>
<td><h1> Add User </h1></td>
</tr>
<tr>
<td>First Name: </td>
<td> <input type="text" id="f_name" name="f_name"/> </td>
</tr>
<tr>
<td>Last Name: </td>
<td> <input type="text" id="l_name" name="l_name"/> </td>
</tr>
<tr>
<td>Address: </td>
<td> <textarea rows="3" cols="20" id="address" name="address"></textarea> </td>
<tr>
<td>Address: </td>
<td> <textarea rows="3" cols="20" id="address" name="address"></textarea> </td>
</tr>
<tr>
<td>Phone No.:
<br> Format (000)-000-0000
</td>
<td> <input type="text" id="l_name" name="l_name"/> </td>
</tr>
<tr>
<td></td>
<td> <input type="submit" value="Add"/></td>
</tr>
</table></center>
</form>
</div>
</body>
</html>