-
Notifications
You must be signed in to change notification settings - Fork 4
/
customerReg.php
35 lines (31 loc) · 1.15 KB
/
customerReg.php
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
<!DOCTYPE HTML>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
</
<title>Customer Registration</title>
</head>
<body>
<div class="body">
</div>
<div class="grad"></div>
<div class="header">
<div>Customer <br>
<span>Registration</span></div>
</div>
<br>
<div class="login">
<form action="insertCustomer.php" method="post">
<br/>
<input id="username" name="uname" placeholder="username" type="text">
<input id="passss" name="pss" placeholder="**********" type="password"><br/>
<input id="email" name="email" placeholder="email" type="text"><br/>
<input id="address" name="address" placeholder="address" type="text"><br/>
<input id="telephone" name="telephone" placeholder="telephone" type="text"><br/>
<input id="receiverName" name="receiverName" placeholder="Receiver's Username" type="text"><br/>
<input id="receiverPassword" name="receiverPassword" placeholder="Receiver's Password" type="password"><br/>
<input name="submit" type="submit" value="Register">
</form>
</body>
</html>