forked from tannmaysgupta/ProjectPrisha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsnu.html
More file actions
62 lines (61 loc) · 2.32 KB
/
insnu.html
File metadata and controls
62 lines (61 loc) · 2.32 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
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>NEW USER</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Nunito:600|Open+Sans:600|Quicksand|Ubuntu" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="form.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-6">
<img src="C:\WORK\git\prishapolicy\ASSET\prisha_png.png" alt="prishapolicy.com" class="img-responsive" style="margin: auto;">
</div>
</div>
<div class="row mainform">
<div class="col-md-offset-1 col-md-10" style="align-content: center; align-items: center;">
<h1 style="text-align: center;">New User Form</h1>
<h3 style="text-align: center;">Please fill in the following details</h3>
<form>
<div class="form-group">
<label for="fname">First Name</label>
<input type="text" class="form-control" id="fname">
</div>
<div class="form-group">
<label for="lname">Last Name</label>
<input type="text" class="form-control" id="lname">
</div>
<div class="form-group">
<label for="age">Age</label>
<input type="number" class="form-control" id="age">
</div>
<div class="form-group">
<label for="Gender">Gender</label>
<label class="radio-inline"><input type="radio" name="Male">Male</label>
<label class="radio-inline"><input type="radio" name="Female">Female</label>
</div>
<div class="form-group">
<label for="address">Address</label>
<textarea class="form-control" rows="3" id="address"></textarea>
</div>
<div class="form-group">
<label for="email">Email address:</label>
<input type="email" class="form-control" id="email">
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>