Update templates/re.html
Browse files- templates/re.html +1 -99
templates/re.html
CHANGED
|
@@ -206,105 +206,7 @@
|
|
| 206 |
<li>Emergency services (call emergency).</li>
|
| 207 |
</ul>
|
| 208 |
|
| 209 |
-
|
| 210 |
-
<fieldset>
|
| 211 |
-
<legend>Personal Info</legend>
|
| 212 |
-
<div class="form-group">
|
| 213 |
-
<label>First Name:</label>
|
| 214 |
-
<input type="text" name="first_name" required>
|
| 215 |
-
<label>____Surname:</label>
|
| 216 |
-
<input type="text" name="surname" required>
|
| 217 |
-
</div>
|
| 218 |
-
<div class="form-group">
|
| 219 |
-
<label>Father's Name:</label>
|
| 220 |
-
<input type="text" name="father_name" required>
|
| 221 |
-
<label>____Mother's Name:</label>
|
| 222 |
-
<input type="text" name="mother_name" required>
|
| 223 |
-
</div>
|
| 224 |
-
<div class="form-group">
|
| 225 |
-
<label>Age:</label>
|
| 226 |
-
<input type="number" name="age" min="0" required>
|
| 227 |
-
<label>____Weight (kg):</label>
|
| 228 |
-
<input type="number" name="weight" min="0" required>
|
| 229 |
-
</div>
|
| 230 |
-
<div class="form-group">
|
| 231 |
-
<label>Height (cm):</label>
|
| 232 |
-
<input type="number" name="height" min="0" required>
|
| 233 |
-
<label>_____Gender:</label>
|
| 234 |
-
<select name="gender" required>
|
| 235 |
-
<option value="male">Male</option>
|
| 236 |
-
<option value="female">Female</option>
|
| 237 |
-
<option value="other">Other</option>
|
| 238 |
-
</select>
|
| 239 |
-
</div>
|
| 240 |
-
<div class="form-group">
|
| 241 |
-
<label>Passport Photo:</label>
|
| 242 |
-
<input type="file" name="photo" accept="image/*" required>
|
| 243 |
-
</div>
|
| 244 |
-
</fieldset>
|
| 245 |
-
|
| 246 |
-
<fieldset>
|
| 247 |
-
<legend>Contact Details</legend>
|
| 248 |
-
<div class="form-group">
|
| 249 |
-
<label>Phone:</label>
|
| 250 |
-
<input type="tel" name="phone" required>
|
| 251 |
-
<label>_________Email:</label>
|
| 252 |
-
<input type="email" name="email" required>
|
| 253 |
-
</div>
|
| 254 |
-
<div class="form-group">
|
| 255 |
-
<label>Address:_______________________________________</label>
|
| 256 |
-
<textarea name="address" required></textarea>
|
| 257 |
-
</div>
|
| 258 |
-
<div class="form-group">
|
| 259 |
-
<label>Marital Status:</label>
|
| 260 |
-
<select name="marital_status" required>
|
| 261 |
-
<option value="single">Single</option>
|
| 262 |
-
<option value="married">Married</option>
|
| 263 |
-
<option value="divorced">Divorced</option>
|
| 264 |
-
<option value="widowed">Widowed</option>
|
| 265 |
-
</select>
|
| 266 |
-
</div>
|
| 267 |
-
</fieldset>
|
| 268 |
-
|
| 269 |
-
<fieldset>
|
| 270 |
-
<legend>Medical Info</legend>
|
| 271 |
-
<div class="form-group">
|
| 272 |
-
<label>Cause of Injury:</label>
|
| 273 |
-
<textarea name="injury_cause" required></textarea>
|
| 274 |
-
</div>
|
| 275 |
-
<div class="form-group">
|
| 276 |
-
<label>Do you have Insurance?</label>
|
| 277 |
-
<select name="insurance" required>
|
| 278 |
-
<option value="yes">Yes</option>
|
| 279 |
-
<option value="no">No</option>
|
| 280 |
-
</select>
|
| 281 |
-
</div>
|
| 282 |
-
<div class="form-group">
|
| 283 |
-
<label>Allergies?</label>
|
| 284 |
-
<select name="allergies" required>
|
| 285 |
-
<option value="yes">Yes</option>
|
| 286 |
-
<option value="no">No</option>
|
| 287 |
-
</select>
|
| 288 |
-
</div>
|
| 289 |
-
</fieldset>
|
| 290 |
-
|
| 291 |
-
<fieldset>
|
| 292 |
-
<legend>X-ray Upload</legend>
|
| 293 |
-
<div class="form-group">
|
| 294 |
-
<label>Side View:</label>
|
| 295 |
-
<input type="file" name="xray_side" accept="image/*" required>
|
| 296 |
-
</div>
|
| 297 |
-
<div class="form-group">
|
| 298 |
-
<label>Top View:</label>
|
| 299 |
-
<input type="file" name="xray_top" accept="image/*" required>
|
| 300 |
-
</div>
|
| 301 |
-
</fieldset>
|
| 302 |
-
|
| 303 |
-
<div class="button-group">
|
| 304 |
-
<button type="button" class="cancel-btn" onclick="document.querySelector('form').reset();" style="font-size: 26px; padding: 10px 20px;">Cancel</button>
|
| 305 |
-
<button type="submit" class="submit-btn" style="font-size: 26px; padding: 10px 20px;">Submit</button>
|
| 306 |
-
<button type="button" class="download-btn" onclick="window.location.href='report.pdf';" style="font-size: 26px; padding: 10px 20px;">Download Report (PDF)</button>
|
| 307 |
-
</div>
|
| 308 |
|
| 309 |
</form>
|
| 310 |
|
|
|
|
| 206 |
<li>Emergency services (call emergency).</li>
|
| 207 |
</ul>
|
| 208 |
|
| 209 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 210 |
|
| 211 |
</form>
|
| 212 |
|