-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsignup.php
More file actions
58 lines (41 loc) · 1.45 KB
/
signup.php
File metadata and controls
58 lines (41 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<title>HackVsit</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div>
<div class="jumbotron text-center">
<h1>Vending Machines</h1>
<p>Smart Vending Machines.</p>
</div>
</div>
<form class="form-group" method="POST" action="register.php">
<label for="usr">Email</label>
<input type="text" class="form-control" id="usr" name="email">
<label for="sel1">Sex:</label>
<select class="form-control" id="sel1" name="sex">
<option>Male</option>
<option>Female</option>
<option>Other</option>
<option>KRAA DOOO</option>
</select>
<br>
<label>Contact No.:</label><br>
<input type="text" name="pno" class ="form-control"/><br>
<label for="pwd">Password:</label>
<input type="Password" class="form-control" id="pwd" name="pwd">
<label for="pwd">ReType Password:</label>
<input type="Password" class="form-control" id="pwd" name="pass">
<br>
<button type="submit" class="btn btn-primary btn-md">SIGN UP</button>
<br>
<a href="index.php">Already Signed UP?</a>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>