-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignup.php
More file actions
41 lines (31 loc) · 1.46 KB
/
Signup.php
File metadata and controls
41 lines (31 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>BR Login</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/login.css" rel="stylesheet">
</head>
<body>
<div class="container">
<p style="font-size:50px" style="color: #31b0d5">
Detail's
</p>
<form class="form-signin" role="form" action="signupdo.php">
<h2 class="form-signin-heading">Sign Up</h2>
<input name="username" type="text" class="form-control" placeholder="username" required autofocus>
<input name="Name" type="text" class="form-control" placeholder="Name" required autofocus>
<input name="passw1" type="password" class="form-control" placeholder="Password" required>
<input name="dateofbirth" type="date" class="form-control" placeholder="00/00/0000" required autofocus>
<input name="location" type="text" class="form-control" placeholder="India" required autofocus>
<button class="btn btn-lg btn-primary btn-block" type="submit" style="background-color: #2a6496 ">Sign Up</button>
</form>
</div>
</body>
</html>