-
Notifications
You must be signed in to change notification settings - Fork 0
/
notification.html
128 lines (96 loc) · 3.03 KB
/
notification.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
<html>
<head>
<title>disaster</title>
<link href="style.css" rel="stylesheet" type="text/css" media="all">
<style type="text/css">
*{
box-sizing: border-box;
}
.hold{
width: 100%;
height: 300px;
color: orange;
text-align: center;
margin: auto;
margin-right: 10px;
}
.disp{
width: 28%;
height: 300px;
color: orange;
text-align: center;
float: right;
margin-right: 10px;
}
.disp1{
width: 28%;
height: 300px;
color: orange;
text-align: center;
float: left;
margin-right: 10px;
}
input{
width: 250px;
height: 30px;
border-radius: 0px;
border-radius: 3px;
border: 1px solid orange;
color: #000;
}
.next{
width: 200px;
height: 30px;
margin: auto;
background-color: firebrick;
margin-top: 20px;
border-radius: 3px;
font-size: 14px;
cursor: pointer;
border: none;
color: #fff;
}
.top{
width: 100%;
height: 100px;
background-color: #484067;
font-family: "Trebuchet MS",Arial,sans-serif;
font-size: 18px;
font-weight: 200;
color: white;
padding: 20px;
text-align: center;
}
.lable{
vertical-align: middle;
float: inherit;
margin-top: 10px;
font-weight: 100;
}
.lable .up{
font-size: 25px;
color: orange;
}
</style>
</head>
<body>
<div class="top"><div class="lable"><div class="up">Directorat of Disaster Management </div>Andaman and Nicobar Adminstration</div></div>
<div class="hold">
<form action="database.php" method="get">
<div class="disp"><h3>Notification/Alerts<h3>
<textarea rows="5" cols="30" name="noti" placeholder="Alert/Notification for today"></textarea>
<div></div><br>
<input class="next" type="submit" name="submit" value="Submit" /><div></div><br>
<input class="next" type="reset" name="reset" value="Reset" /><br>
</div>
</form>
<form action="database.php" method="get">
<div class="disp1"><h3>Update Weather<h3>
<h5>Min <input type="text" name="min" ></h5>
<h5>Max <input type="text" name="max"></h5>
<input class="next" type="submit" name="submit" value="Submit" /><br>
<input class="next" type="reset" name="reset" value="Reset" /><br>
</div>
</form>
</body>
</html>