-
Notifications
You must be signed in to change notification settings - Fork 23
/
signup.html
34 lines (31 loc) · 1.79 KB
/
signup.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
<html>
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head> <body style="color:white; background-image: url(https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&w=1000&q=80);">
<div class="container">
<div class="row">
<div class="col-md-6"></div>
<div class="col-md-4" style="padding-top: 100px";><h2><i><b>Signup Page</b></i></h2><br>
<form action="ri.php" method="POST">
<label>Name:</label>
<input type="text" name="usr_nam" placeholder="Enter your name" class="btn form-control"><br><br>
<label>Email:</label>
<input type="email" name="usr_eml" placeholder="[email protected]" class="btn form-control"><br><br>
<label>Mobile:</label>
<input type="text" name="usr_mob" placeholder="Enter 10 digits number" class="btn form-control"><br><br>
<label>Password:</label>
<input type="password" name="usr_pas" placeholder="Password" class="btn form-control"><br><br>
<label>Repassword:</label>
<input type="password" name="usr_re_pas" placeholder="Re-password" class="btn form-control"><br><br>
<input type="submit" value="Signup" style="padding-left: 70px;padding-right: 70px; background-color: rgb(248, 16, 16);"><br>
<br/>
</form>
</div>
<div class="col-md-2"></div>
</div> </div>
</body></html>