-
Notifications
You must be signed in to change notification settings - Fork 0
/
send-notification.html
115 lines (77 loc) · 4.66 KB
/
send-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ForeverYou.com</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body id="guest-notification" style="background-color: #eee">
<nav class="navbar navbar-expand-md navbar-dark bg-dark mb-4">
<div class="container-fluid">
<a class="navbar-brand" href="./">ForeverYou.com</a>
<div class="col-md-3 text-end" id="topbar-signup" style="display: none">
<a type="button" class="btn btn-outline-primary me-2" href="./login.html">Login</a>
<a type="button" class="btn btn-primary" href="./signup.html">Sign-up</a>
</div>
<div class="dropdown text-end" id="topbar-user" style="display: none">
<a href="#" class="d-block link-dark text-decoration-none dropdown-toggle" id="dropdownUser1" data-bs-toggle="dropdown" aria-expanded="false">
<img src="https://avatars.dicebear.com/api/adventurer-neutral/mail%40ashallendesign.co.uk.svg" alt="mdo" width="32" height="32" class="rounded-circle">
<!-- https://eu.ui-avatars.com/api/?name=John+Doe&size=25 -->
</a>
<ul class="dropdown-menu text-small dropdown-menu-end" aria-labelledby="dropdownUser1" style="">
<li><a class="dropdown-item" href="./">My profile page</a></li>
<li><a class="dropdown-item disabled" href="./">My chats</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="./search.html">Search a person</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item signout-button" href="#">Sign out</a></li>
</ul>
</div>
</div>
</nav>
<main>
<div class="card shadow-sm p-4 m-2">
<div class="col-lg-6 col-xxl-4 mb-5 p-5 mx-auto">
<h2 class="mb-5">Choose a way to receive the response notification to your message</h2>
<div class="d-grid gap-2">
<div class="row g-3">
<div class="col-12">
<label for="username" class="form-label">SMS</label>
<div class="input-group has-validation">
<span class="input-group-text">Tel</span>
<input disabled type="text" class="form-control" id="username" placeholder="" required="">
<div class="invalid-feedback">
Your username is required.
</div>
</div>
</div>
<div class="col-12">
<label for="email" class="form-label">Email <span class="text-body-secondary"></span></label>
<input disabled type="email" class="form-control" id="email" placeholder="[email protected]">
<div class="invalid-feedback">
Please enter a valid email address.
</div>
</div>
<div class="col-12">
<label for="address" class="form-label">Push notification</label>
<div class="d-grid gap-2">
<button class="btn btn-outline-secondary" type="button" id="setup-notifications-button">Subscribe to Push Notification</button>
</div>
</div>
</div>
<div class="col-12 mt-5">
<div class="d-grid gap-2">
<a href="#" class="btn btn-primary btn-lg" type="button" id="continue-button" >Continue</a>
</div>
</div>
</div>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script type="module" src="js/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>