├── README.md
├── images
├── favicon.png
├── siren.mp3
├── sos.jpeg
├── stop.png
└── wallpaper.jpg
├── includes
├── call1.php
├── call2.php
└── call3.php
├── index.html
├── page_four.html
├── page_one.html
├── page_three.html
├── page_two.html
└── style.css
/README.md:
--------------------------------------------------------------------------------
1 | # Women-safety-web-application
2 |
3 | A Dynamic web project for women safety and security with auto location tracking.
--------------------------------------------------------------------------------
/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adyasha8105/Women-safety-web-application/473b286b610a417e00273e0bcfd9d36b74a25c60/images/favicon.png
--------------------------------------------------------------------------------
/images/siren.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adyasha8105/Women-safety-web-application/473b286b610a417e00273e0bcfd9d36b74a25c60/images/siren.mp3
--------------------------------------------------------------------------------
/images/sos.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adyasha8105/Women-safety-web-application/473b286b610a417e00273e0bcfd9d36b74a25c60/images/sos.jpeg
--------------------------------------------------------------------------------
/images/stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adyasha8105/Women-safety-web-application/473b286b610a417e00273e0bcfd9d36b74a25c60/images/stop.png
--------------------------------------------------------------------------------
/images/wallpaper.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adyasha8105/Women-safety-web-application/473b286b610a417e00273e0bcfd9d36b74a25c60/images/wallpaper.jpg
--------------------------------------------------------------------------------
/includes/call1.php:
--------------------------------------------------------------------------------
1 | $apiKey, 'numbers' => $numbers, "sender" => $sender, "message" => $message);
15 | // Send the POST request with cURL
16 | $ch = curl_init('https://api.textlocal.in/send/');
17 | curl_setopt($ch, CURLOPT_POST, true);
18 | curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
19 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
20 | $response = curl_exec($ch);
21 | curl_close($ch);
22 | // Process your response here
23 | echo $response;
24 | }
25 | ?>
--------------------------------------------------------------------------------
/includes/call2.php:
--------------------------------------------------------------------------------
1 | $apiKey, 'numbers' => $numbers, "sender" => $sender, "message" => $message);
15 | // Send the POST request with cURL
16 | $ch = curl_init('https://api.textlocal.in/send/');
17 | curl_setopt($ch, CURLOPT_POST, true);
18 | curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
19 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
20 | $response = curl_exec($ch);
21 | curl_close($ch);
22 | // Process your response here
23 | echo $response;
24 | }
25 | ?>
--------------------------------------------------------------------------------
/includes/call3.php:
--------------------------------------------------------------------------------
1 | $apiKey, 'numbers' => $numbers, "sender" => $sender, "message" => $message);
15 | // Send the POST request with cURL
16 | $ch = curl_init('https://api.textlocal.in/send/');
17 | curl_setopt($ch, CURLOPT_POST, true);
18 | curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
19 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
20 | $response = curl_exec($ch);
21 | curl_close($ch);
22 | // Process your response here
23 | echo $response;
24 | }
25 | ?>
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
18 |
37 |
38 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
!!!Keep Calm Someone will hear you and come for help... !!!
64 |
65 |
66 |
67 |
68 |
69 |
70 |
73 |
--------------------------------------------------------------------------------
/page_one.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
Women Safety
5 |
6 |
46 |
47 |
48 |
58 |
59 |
60 |
61 |
62 | Results
63 |
64 |
65 |
66 |
67 |
142 |
145 |
146 |
147 |
--------------------------------------------------------------------------------
/page_three.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
Women Safety
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
65 |
66 |
67 |
86 |
87 |
117 |
118 |
119 |
Call 1901
120 |
121 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 | Mobile Number 2
142 |
143 |
144 |
145 | Message
146 | Please save me. I am in Danger
147 |
148 | Send
149 |             
150 | Clear
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 | Mobile Number 3
159 |
160 |
161 |
162 | Message
163 | Please save me. I am in Danger
164 |
165 | Send
166 |             
167 | Clear
168 |
169 |
170 |
171 |
172 |
173 |
174 |
177 |
178 |
179 |
180 |
--------------------------------------------------------------------------------
/page_two.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
Women Safety
6 |
7 |
8 |
9 |
31 |
32 |
33 |
34 |
44 |
45 |
131 |
132 |
133 |
134 |
135 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | html {
2 | height: 100%;
3 | }
4 |
5 | * {
6 | margin: 0;
7 | padding: 0;
8 | }
9 |
10 | body {
11 | font: normal 0.8em "Bellefair", arial, sans-serif;
12 | background: #f0efe2 url(background.png) repeat;
13 | color: #fff;
14 | }
15 |
16 | p {
17 | padding: 0 0 20px 0;
18 | line-height: 1.7em;
19 | }
20 |
21 | img {
22 | border: 0;
23 | }
24 |
25 | h1,
26 | h2,
27 | h3,
28 | h4,
29 | h5,
30 | h6 {
31 | font: normal 175% "Bellefair", arial, sans-serif;
32 | color: #9932cc;
33 | margin: 0 0 15px 0;
34 | padding: 15px 0 5px 0;
35 | }
36 |
37 | h2 {
38 | font: normal 175% "Amarante", arial, sans-serif;
39 | }
40 |
41 | h4,
42 | h5,
43 | h6 {
44 | margin: 0;
45 | padding: 0 0 5px 0;
46 | font: normal 120% "Bellefair", arial, sans-serif;
47 | }
48 |
49 | h5,
50 | h6 {
51 | font: italic 95% "Bellefair", arial, sans-serif;
52 | padding: 0 0 15px 0;
53 | }
54 |
55 | a,
56 | a:hover {
57 | outline: none;
58 | text-decoration: underline;
59 | color: #fff;
60 | }
61 |
62 | a:hover {
63 | text-decoration: none;
64 | }
65 |
66 | .left {
67 | float: left;
68 | width: auto;
69 | margin-right: 10px;
70 | }
71 |
72 | .right {
73 | float: right;
74 | width: auto;
75 | margin-left: 10px;
76 | }
77 |
78 | .center {
79 | display: block;
80 | text-align: center;
81 | margin: 20px auto;
82 | }
83 |
84 | blockquote {
85 | margin: 20px 0;
86 | padding: 10px 20px 0 20px;
87 | border: 1px solid #e5e5db;
88 | background: #fff;
89 | }
90 |
91 | ul {
92 | margin: 2px 0 22px 17px;
93 | }
94 |
95 | ul li {
96 | list-style-type: circle;
97 | margin: 0 0 6px 0;
98 | padding: 0 0 4px 5px;
99 | }
100 |
101 | ol {
102 | margin: 8px 0 22px 20px;
103 | }
104 |
105 | ol li {
106 | margin: 0 0 11px 0;
107 | }
108 |
109 | #main,
110 | #logo,
111 | #menubar,
112 | #site_content,
113 | #footer {
114 | margin-left: auto;
115 | margin-right: auto;
116 | }
117 |
118 | #header {
119 | background: transparent;
120 | height: 202px;
121 | }
122 |
123 | #logo {
124 | width: 898px;
125 | position: relative;
126 | height: 148px;
127 | }
128 |
129 | #logo #logo_text {
130 | position: absolute;
131 | top: 20px;
132 | left: 0;
133 | }
134 |
135 | #logo h1,
136 | #logo h2 {
137 | font: normal 300% "Amarante", cursive, sans-serif;
138 | border-bottom: 0;
139 | text-transform: none;
140 | margin: 0;
141 | }
142 |
143 | #logo_text h1,
144 | #logo_text h1 a,
145 | #logo_text h1 a:hover {
146 | padding: 22px 0 0 0;
147 | color: #000;
148 | letter-spacing: -1px;
149 | text-decoration: none;
150 | }
151 |
152 | #logo_text h1 a .logo_colour {
153 | color: #9932cc;
154 | font: italic 36px garamond;
155 | font-family: "Princess sofia";
156 | }
157 |
158 | #logo_text h1 a .logo_colour2 {
159 | color: #000000;
160 | font: italic 36px garamond;
161 | font-family: "Princess sofia";
162 | }
163 |
164 | #logo_text h2 {
165 | font-size: 100%;
166 | padding: 4px 0 0 0;
167 | color: #000;
168 | }
169 |
170 | #menubar {
171 | width: 898px;
172 | height: 52px;
173 | padding: 0;
174 | background: #000;
175 | }
176 |
177 | ul#menu,
178 | ul#menu li {
179 | float: left;
180 | margin: 0;
181 | padding: 0;
182 | }
183 |
184 | ul#menu li {
185 | list-style: none;
186 | }
187 |
188 | ul#menu li a {
189 | letter-spacing: 0.1em;
190 | font: normal 100% "Bellefair", arial, sans-serif;
191 | display: block;
192 | float: left;
193 | height: 17px;
194 | margin: 10px 0 0 10px;
195 | padding: 9px 26px 6px 26px;
196 | text-align: center;
197 | color: #fff;
198 | text-transform: uppercase;
199 | text-decoration: none;
200 | background: transparent;
201 | }
202 |
203 | ul#menu li a:hover,
204 | ul#menu li.selected a,
205 | ul#menu li.selected a:hover {
206 | color: #9932cc;
207 | background: #fff;
208 | }
209 |
210 | #site_content {
211 | width: 854px;
212 | overflow: hidden;
213 | margin: 0 auto 0 auto;
214 | padding: 0 24px 20px 20px;
215 | background: #000;
216 | }
217 |
218 | .sidebar {
219 | float: right;
220 | width: 210px;
221 | padding: 0 15px 20px 15px;
222 | }
223 |
224 | .sidebar ul {
225 | width: 198px;
226 | padding: 4px 0 0 0;
227 | margin: 4px 0 30px 0;
228 | }
229 |
230 | .sidebar li {
231 | list-style: none;
232 | padding: 0 0 7px 0;
233 | }
234 |
235 | .sidebar li a,
236 | .sidebar li a:hover {
237 | padding: 0 0 0 40px;
238 | display: block;
239 | background: transparent url(link.png) no-repeat left center;
240 | }
241 |
242 | .sidebar li a.selected {
243 | color: #7e2451;
244 | text-decoration: none;
245 | }
246 |
247 | #content {
248 | text-align: center;
249 | padding: 0;
250 | }
251 |
252 | #content1 {
253 | text-align: center;
254 | float: center;
255 | width: 595px;
256 | padding: 0;
257 | }
258 | #content ul {
259 | margin: 2px 0 22px 0px;
260 | }
261 |
262 | #content ul li {
263 | list-style-type: none;
264 | background: url(bullet.png) no-repeat;
265 | margin: 0 0 6px 0;
266 | padding: 0 0 4px 25px;
267 | line-height: 1.5em;
268 | }
269 |
270 | #footer {
271 | width: 898px;
272 | font: normal 100% "Bellefair", arial, sans-serif;
273 | height: 33px;
274 | padding: 24px 0 5px 0;
275 | text-align: center;
276 | background: transparent;
277 | color: #000;
278 | text-transform: uppercase;
279 | letter-spacing: 0.1em;
280 | }
281 |
282 | #footer a {
283 | color: #000;
284 | text-decoration: none;
285 | }
286 |
287 | #footer a:hover {
288 | color: #000;
289 | text-decoration: underline;
290 | }
291 |
292 | .search {
293 | color: #5d5d5d;
294 | border: 1px solid #bbb;
295 | width: 134px;
296 | padding: 4px;
297 | font: 100% "Bellefair", arial, sans-serif;
298 | }
299 |
300 | #colours {
301 | height: 0px;
302 | text-align: right;
303 | padding: 66px 16px 0px 300px;
304 | }
305 |
306 | .form_settings {
307 | margin: 15px 0 0 0;
308 | }
309 |
310 | .form_settings p {
311 | padding: 0 0 4px 0;
312 | }
313 |
314 | .form_settings span {
315 | float: left;
316 | width: 200px;
317 | text-align: left;
318 | }
319 |
320 | .form_settings input,
321 | .form_settings textarea {
322 | padding: 5px;
323 | width: 299px;
324 | font: 100% "Bellefair", arial;
325 | border: 1px solid #e5e5db;
326 | background: #fff;
327 | color: #47433f;
328 | }
329 |
330 | .form_settings .submit {
331 | font: 100% arial;
332 | border: 1px solid;
333 | width: 99px;
334 | margin: 0 0 0 212px;
335 | height: 33px;
336 | padding: 2px 0 3px 0;
337 | cursor: pointer;
338 | background: #000;
339 | color: #fff;
340 | }
341 |
342 | .form_settings textarea,
343 | .form_settings select {
344 | font: 100% "Bellefair", arial;
345 | width: 299px;
346 | }
347 |
348 | .form_settings select {
349 | width: 310px;
350 | }
351 |
352 | .form_settings .checkbox {
353 | margin: 4px 0;
354 | padding: 0;
355 | width: 14px;
356 | border: 0;
357 | background: none;
358 | }
359 |
360 | .separator {
361 | width: 100%;
362 | height: 0;
363 | border-top: 1px solid #d9d5cf;
364 | border-bottom: 1px solid #fff;
365 | margin: 0 0 20px 0;
366 | }
367 |
368 | table {
369 | margin: 10px 0 30px 0;
370 | }
371 |
372 | table tr th,
373 | table tr td {
374 | background: #3b3b3b;
375 | color: #fff;
376 | padding: 7px 4px;
377 | text-align: left;
378 | }
379 |
380 | table tr td {
381 | background: #f0efe2;
382 | color: #47433f;
383 | border-top: 1px solid #fff;
384 | }
385 |
386 | body {
387 | background: white;
388 | }
389 |
390 | .zoomimage {
391 | width: auto;
392 | height: auto;
393 | overflow: hidden;
394 | text-align: center;
395 | padding: 30px;
396 | }
397 |
398 | img {
399 | max-width: 100%;
400 | max-height: 100%;
401 | transition: 0.75s;
402 | }
403 |
404 | /*.zoomimage:hover img{
405 | transform: scale(5);
406 | }*/
407 |
--------------------------------------------------------------------------------