-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
100 lines (93 loc) · 4.63 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="images/favicon.ico">
<title>TechNumen Registration</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Icons -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/style.css" rel="stylesheet">
<link href="css/login.css" rel="stylesheet">
</head>
<body>
<div class="container" id="wrapper">
<main class="col-md-12">
<section class="row">
<div class="col-sm-12">
<section class="row">
<div class="form-signin">
<br><img src="images/technumen-logo.png">
<hr>
<h2>Registration Details</h2>
</div>
<div class="col-md-12">
<form>
<div class="form-group row">
<label for="emailId" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-4">
<input type="email" class="form-control" id="emailId"
placeholder="Email">
</div>
<label for="empId" class="col-sm-2 col-form-label">Employee Id</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="empId"
placeholder="Employee Id">
</div>
</div>
<div class="form-group row">
<label for="fName" class="col-sm-2 col-form-label">First Name</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="fName"
placeholder="First Name">
</div>
<label for="lName" class="col-sm-2 col-form-label">Last Name</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="lName"
placeholder="Last Name">
</div>
</div>
<div class="form-group row">
<label for="clientName" class="col-sm-2 col-form-label">Client Name</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="clientName"
placeholder="Client Name">
</div>
<label for="clientAddress" class="col-sm-2 col-form-label">Client Address</label>
<div class="col-sm-4">
<input type="text" class="form-control" id="clientAddress"
placeholder="Client Address">
</div>
</div>
<div class="form-signin">
<button class="btn btn-lg btn-success btn-block" type="submit">Register</button>
</div>
</form>
<hr>
<div class="form-signin">
<a href="login.html">Login into your Existing TechNumen account</a>
</div>
</div>
</section>
</div>
</section>
</main>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"
integrity="sha384-DztdAPBWPRXSA/3eYEEUWrWCy7G5KFbe8fFjk5JAIxUYHKkDx6Qin1DkWx51bBrb"
crossorigin="anonymous"></script>
<script src="dist/js/bootstrap.min.js"></script>
</body>
</html>