-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchPage.html
43 lines (37 loc) · 1.59 KB
/
searchPage.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Search Results</title>
<link rel="stylesheet" href="bootstrap-3.3.7/css/bootstrap.min.css" media="screen" title="no title">
<link rel="stylesheet" href="css/myStyles.css" media="screen" title="no title">
</head>
<body>
div.
<div class="comtainer-fluid">
<div class="row col-md-4 col-md-offset-4">
<form>
<div class="form-group">
<label for="defendantSurname">Defendant First Name</label>
<input type="text" class="form-control" id="defendantFirstName" placeholder="enter surname">
</div>
<div class="form-group">
<label for="defendantSurname">Defendant First Name</label>
<input type="text" class="form-control" id="defendantFirstName" placeholder="enter surname">
</div>
<div class="form-group">
<label for="defendantSurname">Defendant Surname</label>
<input type="text" class="form-control" id="defendantSurname" placeholder="enter surname">
</div>
<div class="form-group">
<label for="nameOfCrownCourt">Name of Crown Court</label>
<input type="text" class="form-control" id="nameOfCrownCourt" placeholder="enter surname">
</div>
<button type="submit" class="btn btn-primary">Search</button>
<br>
<small id="submitHelp" class="form-text text-muted">Please click search form to access results dashboard</small>
</form>
</div>
</div>
</body>
</html>