-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.html
190 lines (185 loc) · 7.74 KB
/
update.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Weather Alert</title>
<link rel="stylesheet" href="public/css/styles.css" />
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.bundle.min.js"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
/>
</head>
<body>
<section class="subscription bg-white">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="subscription-wrapper">
<div
class="d-flex subscription-content justify-content-between align-items-center flex-column flex-md-row text-center text-md-left"
>
<h3 class="flex-fill">
Update Your <br/>Details
</h3>
<form action="update" method="POST" class="row flex-fill">
<div class="col-lg-8 my-md-2 my-2" style="background: none;">
<input
type="email"
class="form-control px-4 border-0 w-100 text-center text-md-left"
id="email"
placeholder="Enter your same email in that you receive alerts"
name="email"
required
/><br />
<input
type="text"
class="form-control px-4 border-0 w-100 text-center text-md-left"
id="name"
placeholder="Updated Name *"
name="name"
required
/><br />
<input
type="text"
class="form-control px-4 border-0 w-100 text-center text-md-left"
id="email"
placeholder="Updated Preferred Location *"
name="location"
required
/><br />
<div
class="alert alert-dark px-4 border-0 w-100 text-center text-md-left"
role="alert"
>
<center style="background: none;">Update particular days when you don't want alert's :</center>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="monday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Monday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="tuesday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Tuesday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="wednesday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Wednesday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="thrusday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Thrusday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="friday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Friday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="saturday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Saturday</label
>
</div>
<div class="form-check form-check-inline" style="background: none;">
<input
class="form-check-input"
type="checkbox"
id="inlineCheckbox1"
value="option1"
name="sunday"
/>
<label class="form-check-label" for="inlineCheckbox1" style="background: none;"
>Sunday</label
>
</div>
</div>
<div class="col-lg-6 my-md-2 my-2" style="background: none;">
<br>
<button
type="submit"
class="btn btn-primary btn-lg border-0 w-100"
>
Update
</button>
</div>
</form>
</div>
<br />
<div class="alert alert-info d-flex subscription-content align-items-center flex-column" role="alert">
<center style="background: none;">
* Here If you don't want to change any particular information like if you don't want to change name just write previous one.
</center>
</div>
<div
class="alert alert-danger d-flex subscription-content align-items-center flex-column"
role="alert"
>
<center style="background: none;">
If you want to unsubscribe to our weather alerts then click
<a href="/unsubscribe" style="color: rgb(57, 130, 159);background: none;"
>here</a
>
</center>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>