-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate.html
42 lines (31 loc) · 1.08 KB
/
create.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create User</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="navbar">
<span><a href="index.html" id="home">Home</a></span>
<span><a href="user.html" id="view">Users</a></span>
<span><a href="transaction.html" id="transactions">Transactions</a></span>
</div>
<button id="add">Add User</button>
<button id="batch-add">Add Users</button>
<div class="adds-container">
<div class="add-container">
<form>
<label for="name">Name:</label>
<input type="text" id="name" class="name">
<label for="balance">Balance: Php </label>
<input type="number" id="balance" min="0" class="balance">
</form>
<button class='addusers'>Submit</button>
</div>
</div>
<script src="script.js"> </script>
<script src="create.js"> </script>
</body>
</html>