-
Notifications
You must be signed in to change notification settings - Fork 0
/
addCustomer.html
37 lines (31 loc) · 1.68 KB
/
addCustomer.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
<!DOCTYPE html>
<html>
<head></head>
<body>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.2/firebase-database.js"></script>
<link rel="stylesheet" href="addCustomer.css">
<div id = "form">
<h1 align="center" style="margin-bottom: 10px;">Add Customer</h1>
<hr style="margin-bottom: 20px;">
<form id="cusform" action="customer.html">
<label for="name">Name:</label><br>
<input id="name" type="text" placeholder="Enter Customer Name"><br>
<label for="id">Customer ID</label><br>
<input id="id" type="text" placeholder="Enter Customer ID [Ex: 101]"><br>
<label for="date">Registration Date</label><br>
<input id="date" type="date"><br>
<label for="email">Email:</label><br>
<input id="email" type="email" placeholder="Enter email [ [email protected] ]"><br>
<label for="num">Phone No:</label><br>
<input id="num" type="text" placeholder="Enter 11-digit Phone Number [Ex: 018XXXXXXXX]"><br>
<label for="address">Address:</label><br>
<input id="address" type="text" placeholder="Enter Address [ Kandirpar, Cumilla ]"><br>
<button id="addbutton" type="button">Add</button>
</form>
<script src="addCustomer.js"></script>
</div>
<div class="loader" id="classId"></div>
</body>
</html>