-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunsubscribe.html
39 lines (36 loc) · 1.82 KB
/
unsubscribe.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
<!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">Unsubscribe <br> to our Weather Alerts</h3>
<form action="delete" method="POST" class="row flex-fill " style="background: none;">
<div class="col-lg-7 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" style="background: none;" id="email" placeholder="Your Email" name="email" required`><br>
</div>
<div class="col-lg-5 my-md-2 my-2" style="background: none;">
<button type="submit" class="btn btn-primary btn-lg border-0 w-100" style="background: none;">Unsubscribe</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>