-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcase.html
95 lines (83 loc) · 1.68 KB
/
case.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
<html>
<head>
<link rel="stylesheet" type="text/css" href="navigation.css" media="screen"/>
</head>
<body>
<div align="right">
<button onclick="window.location='welcome.html';"><h2 align="right">LOG OUT</h2></button>
</div>
<div class="sidenav">
<a href="case.html">Enter case details</a>
<a href="hearing_1.php">Enter Hearing details</a>
<a href="slots.php">Book a slot</a>
<a href="particular_date.html">View Hearings of a date</a>
<a href="pending.php">View pending cases</a>
<a href="completed.php">View completed cases</a>
</div>
<form method="post" action="case.php">
<div class="content">
<h2><center>ADD A NEW CASE</h2>
<p>
<label>Judge
<input type="text" name="judge" required>
</label>
</p>
<p>
<label>Prosecutor
<input type="text" name="prosecutor" required>
</label>
</p>
<fieldset>
<legend>Crime</legend>
<p>
<label>Crime Date
<input type="date" name="crimeDate" required>
</label>
</p>
<p>
<label>Location
<input type="text" name="location" required>
</label>
</p>
<p>
<label>Type
<input type="text" name="type" required>
</label>
</p>
</fieldset>
<fieldset>
<legend>Defendant</legend>
<p>
<label>Name
<input type="text" name="defendantName" required>
</label>
</p>
<p>
<label>Address
<textarea name="address" maxlength="500"></textarea>
</label>
</p>
</fieldset>
<fieldset>
<legend>Arrest</legend>
<p>
<label>Officer
<input type="text" name="officer" required>
</label>
</p>
<p>
<label>Date
<input type="date" name="arrestDate" required>
</label>
</p>
</fieldset>
Select :
<input type="radio" name="status" value="completed"> Completed
<input type="radio" name="status" value="pending"> Pending<br>
<p>
<input type="submit" value="Submit">
</p>
</div>
</form>
</body>
</html>