-
Notifications
You must be signed in to change notification settings - Fork 0
/
registration.html
74 lines (61 loc) · 2.91 KB
/
registration.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="Mosaddek">
<meta name="keyword" content="FlatLab, Dashboard, Bootstrap, Admin, Template, Theme, Responsive, Fluid, Retina">
<link rel="shortcut icon" href="img/favicon.png">
<title>FlatLab - Flat & Responsive Bootstrap Admin Template</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-reset.css" rel="stylesheet">
<!--external css-->
<link href="assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/style-responsive.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js IE8 support of HTML5 tooltipss and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body class="login-body">
<div class="container">
<form class="form-signin" action="index.html">
<h2 class="form-signin-heading">registration now</h2>
<div class="login-wrap">
<p>Enter your personal details below</p>
<input type="text" class="form-control" placeholder="Full Name" autofocus>
<input type="text" class="form-control" placeholder="Address" autofocus>
<input type="text" class="form-control" placeholder="Email" autofocus>
<input type="text" class="form-control" placeholder="City/Town" autofocus>
<div class="radios">
<label class="label_radio col-lg-6 col-sm-6" for="radio-01">
<input name="sample-radio" id="radio-01" value="1" type="radio" checked /> Male
</label>
<label class="label_radio col-lg-6 col-sm-6" for="radio-02">
<input name="sample-radio" id="radio-02" value="1" type="radio" /> Female
</label>
</div>
<p> Enter your account details below</p>
<input type="text" class="form-control" placeholder="User Name" autofocus>
<input type="password" class="form-control" placeholder="Password">
<input type="password" class="form-control" placeholder="Re-type Password">
<label class="checkbox">
<input type="checkbox" value="agree this condition"> I agree to the Terms of Service and Privacy Policy
</label>
<button class="btn btn-lg btn-login btn-block" type="submit">Submit</button>
<div class="registration">
Already Registered.
<a class="" href="login.html">
Login
</a>
</div>
</div>
</form>
</div>
</body>
</html>