-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
216 lines (215 loc) · 6.75 KB
/
index.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1024">
<title>Patients ‹ Pharmaxo Portal</title>
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
</head>
<body>
<div class="navbar" role="banner">
<div class="container fixed-1280">
<div class="three columns">
<h1 class="navbar-title"><a href="#">Pharmaxo</a></h1>
</div>
<div class="nine columns">
<ul class="navbar-nav" role="navigation">
<li class="navbar-nav__item"><a href="#">Home</a></li>
<li class="navbar-nav__item"><a href="#">Patients</a></li>
<li class="navbar-nav__item"><a href="#">Services</a></li>
<li class="navbar-nav__item"><a href="#">Dan Leech</a></li>
</ul>
</div>
</div>
</div>
<div class="subnav-container">
<div class="container fixed-1280">
<div class="three columns">
<h2>Patients</h2>
</div>
<div class="nine columns">
<ul class="subnav">
<li class="subnav__item"><button class="btn">Register a Patient…</button></li>
<li class="subnav__item"><button class="btn">Import</button></li>
<li class="subnav__item"><input type="text" placeholder="Who are you looking for?"></li>
</ul>
</div>
</div>
</div>
<div class="container fixed-1280">
<table>
<thead>
<tr>
<th>Name</th>
<th>Date of Birth</th>
<th>Gender</th>
<th>NHS No.</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>APPLESEED, Jane (Miss)</td>
<td>20-Aug-1990 (23)</td>
<td>Female</td>
<td>123 456 7890</td>
<td class="table-btns">
<select>
<option value="">Option 1</option>
<option value="">Option 2</option>
</select>
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
<tr class="selected-row">
<td>APPLESEED, Jane (Miss)</td>
<td>20-Aug-1990 (23)</td>
<td>Female</td>
<td>123 456 7890</td>
<td class="table-btns">
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
<tr>
<td>APPLESEED, Jane (Miss)</td>
<td>20-Aug-1990 (23)</td>
<td>Female</td>
<td>123 456 7890</td>
<td class="table-btns">
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
<tr>
<td>APPLESEED, Jane (Miss)</td>
<td>20-Aug-1990 (23)</td>
<td>Female</td>
<td>123 456 7890</td>
<td class="table-btns">
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
<tr>
<td>APPLESEED, Jane (Miss)</td>
<td>20-Aug-1990 (23)</td>
<td>Female</td>
<td>123 456 7890</td>
<td class="table-btns">
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
<tr>
<td><span class="text-danger">Danger Text</span></td>
<td><span class="text-warning">Warning Text</span></td>
<td><span class="text-success">Success Text</span></td>
<td>123 456 7890</td>
<td class="table-btns">
<button class="btn">View</button>
<button class="btn">Edit…</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="container fixed-1280">
<form>
<fieldset>
<legend>Fieldset Legend</legend>
<div class="container-nested">
<div class="six columns">
<div class="input-group">
<label for="example-input-1">Forename</label>
<input type="text" id="example-input-1">
</div>
<div class="input-group">
<label for="example-input-1">Surname</label>
<input type="text" id="example-input-1">
</div>
<div class="input-group">
<label for="example-dropdown">Dropdown</label>
<select id="example-dropdown">
<option value="">Option 1</option>
<option value="">Option 2</option>
<option value="">Option 3</option>
</select>
</div>
<div class="input-group">
<label for="example-text">Text</label>
<span id="example-text" class="form-text">This is form text.</span>
</div>
<div class="input-group error">
<label for="example-input-1">Address Line 1</label>
<input type="text" id="example-input-1">
<span class="input-error-message">Input error message.</span>
</div>
<div class="input-group">
<label for="example-input-1">Label 1</label>
<textarea id="example-input-1">
sdfdsf
</textarea>
</div>
<div class="input-group error">
<label>Checkboxes</label>
<div class="checkbox-group">
<input type="checkbox" id="checkbox-1">
<label for="checkbox-1">Checkbox 1</label>
</div>
<div class="checkbox-group">
<input type="checkbox" id="checkbox-2" checked>
<label for="checkbox-2">Checkbox 2</label>
</div>
<div class="checkbox-group">
<input type="checkbox" id="checkbox-3" checked>
<label for="checkbox-3">Checkbox 3. This has a really long label that wraps onto a second line. See how it doesn’t conflict with the line below?</label>
</div>
<div class="checkbox-group">
<input type="checkbox" id="checkbox-4" checked>
<label for="checkbox-4">Checkbox 4</label>
</div>
<span class="input-error-message">Checkbox error message</span>
</div>
</div>
<div class="six columns">
<div class="input-group">
<label for="example-input-1">Label 1</label>
<input type="text" id="example-input-1">
</div>
<div class="input-group">
<label for="example-input-1">Goggles</label>
<input type="text" id="example-input-1" placeholder="This is a disabled field" disabled>
</div>
<div class="input-group">
<label for="example-input-1">Label 1</label>
<input type="text" id="example-input-1">
</div>
<div class="input-group">
<label for="hps">Healthcare Professionals</label>
<select id="hps" class="select-multiple" multiple>
<option value="">APPLESEED, Jane (Miss), Administrative Staff</option>
<option value="">WOFTAM, Johnny (Dr), Doctor</option>
</select>
</div>
<div class="input-group">
<label for="example-input-1">Label 1</label>
<input type="text" id="example-input-1">
</div>
</div>
</div>
<div class="container-nested">
<div class="twelve columns right">
<button class="btn btn-normal">Save Patient</button>
<button class="btn btn-disabled" disabled>Disabled Button</button>
<button class="btn">Cancel</button>
</div>
</div>
</fieldset>
</form>
</div>
</body>
</html>