-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·152 lines (135 loc) · 5.28 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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<title>Tamil Nadu Police portal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=1000, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oxygen:400,700"> -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<div id="page_container">
<h1>Tamil Nadu Police</h1>
<button type="button" class="button" id="add_victim">Add Victim Details</button>
<table class="datatable" id="table_victims">
<thead>
<tr>
<th>No</th>
<th>Name</th>
<th>Gender</th>
<th>Address</th>
<th>Mobile</th>
<th>Crime Location</th>
<th>Crime Date</th>
<th>Victim Status</th>
<th>Action</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="lightbox_bg"></div>
<div class="lightbox_container">
<div class="lightbox_close"></div>
<div class="lightbox_content">
<!-- form start-->
<h2>Add Victim Details</h2>
<form class="form add" id="form_victim" data-id="" novalidate>
<div class="input_container">
<label for="no">No: <span class="required">*</span></label>
<div class="field_container">
<input type="number" step="1" min="0" class="text" name="no" id="no" value="" required>
</div>
</div>
<div class="input_container">
<label for="name">Victim Name: <span class="required">*</span></label>
<div class="field_container">
<input type="text" class="text" name="name" id="name" value="" required>
</div>
</div>
<div class="input_container">
<label for="gender">Gender: <span class="required">*</span></label>
<div class="form-group field_container">
<select name="gender" id="gender" class="form-control" required>
<option value="">Select Gender</option>
<option value="t">Transgender</option>
<option value="f">Female</option>
<option value="m">Male</option>
</select>
</div>
<div class="input_container">
<label for="address">Address: <span class="required">*</span></label>
<div class="field_container">
<input type="text" class="text" name="address" id="address" value="" required>
</div>
</div>
<div class="input_container">
<label for="mobile">Mobile: <span class="required">*</span></label>
<div class="field_container">
<input type="text" class="text" name="mobile" id="mobile" value="" required>
</div>
</div>
<div class="input_container">
<label for="location">Location: <span class="required">*</span></label>
<div class="field_container">
<input type="text" class="text" name="location" id="location" value="" required>
</div>
</div>
<div class="input_container">
<label for="cdate">Date: <span class="required">*</span></label>
<div class="field_container">
<input type="date" class="text" name="date" id="date" value="" required>
</div>
</div>
<div class="input_container">
<label for="status">Status: <span class="required">*</span></label>
<div class="field_container">
<select name="status" id="status" class="form-control" required>
<option value="">Select Status</option>
<option value="open">Open</option>
<option value="yts">Yet to Start</option>
<option value="progress">In Progress</option>
<option value="closed">Closed</option>
</select>
</div>
</div>
<div class="button_container">
<button type="submit">Add victim details</button>
</div>
</form>
<!-- form end -->
</div>
</div>
<noscript id="noscript_container">
<div id="noscript" class="error">
<p>JavaScript support is needed to use this page.</p>
</div>
</noscript>
<div id="message_container">
<div id="message" class="success">
<p>This is a success message.</p>
</div>
</div>
<div id="loading_container">
<div id="loading_container2">
<div id="loading_container3">
<div id="loading_container4">
Loading, please wait...
</div>
</div>
</div>
</div>
<script charset="utf-8" src="js/jquery.min.js"></script>
<script charset="utf-8" src="js/bootstrap.min.js"></script
> <script charset="utf-8" src="js/jquery.dataTables.js"></script>
<script charset="utf-8" src="js/jquery.validate.min.js"></script>
<script charset="utf-8" src="js/webapp.js"></script>
</body>
<script type="text/javascript">
console.log($("document"));
</script>
</html>