forked from tannmaysgupta/ProjectPrisha
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseruser.html
More file actions
52 lines (50 loc) · 2.03 KB
/
seruser.html
File metadata and controls
52 lines (50 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<title>SEARCH 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;">Search User Form</h1>
<h3 style="text-align: center;">Search by Name</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>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<h3 style="text-align: center;">Search by email</h3>
<form>
<div class="form-group">
<label for="email">Email Id</label>
<input type="email" class="form-control" id="email">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<div class="print user">
</div>
</div>
</div>
</div>
</body>
</html>