-
Notifications
You must be signed in to change notification settings - Fork 1
/
comming-soon.html
59 lines (58 loc) · 3.4 KB
/
comming-soon.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
<!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>Comming Soon</title>
<link rel="icon" href="public/content/img/css-img/css.png" sizes="any">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap-icons/font/bootstrap-icons.css">
<link rel="stylesheet" href="public/content/css/comming-soon.css">
</head>
<body>
<!-- ! -------------------------------- wrap --------------------------------- ! -->
<div class="wrap d-flex flex-row-reverse">
<!-- ! --------------------------- wrap left box ---------------------------- ! -->
<div class="wrap-left-box h-100 col-md-7 col-lg-6 d-flex align-items-center justify-content-center">
<div class="col-xxl-7 col-xl-8 col-lg-10" style="z-index: 9999;">
<div class="form-wrap">
<form accept="" method="">
<h5 class="text-capitalize text-white form-wrap-title text-center mt-2">Send to your email</h5>
<!-- ! ------------------------------ username ------------------------------- ! -->
<div class="col-12 mt-4">
<div class="input-group border-bottom">
<span class="input-group-text"><i class="bi bi-cursor-text"></i></span>
<input type="text" class="form-control user-name-inp" placeholder="Name" name="name">
</div>
<!-- ! --------------------------- validation text --------------------------- ! -->
<p class="mt-3 validation-text" id="user-name-validate"></p>
</div>
<!-- ! -------------------------------- email -------------------------------- ! -->
<div class="col-12 mt-4">
<div class="input-group border-bottom">
<span class="input-group-text"><i class="bi bi-envelope"></i></span>
<input type="text" class="form-control email-inp" placeholder="Email" name="email">
</div>
<!-- ! --------------------------- validation text --------------------------- ! -->
<p class="mt-3 validation-text" id="email-validate"></p>
</div>
<div class="col-12 mt-5">
<input type="submit" class="send-btn" disabled value="SEND" />
</div>
</form>
</div>
</div>
</div>
<!-- ! ---------------------------- wrap right box ---------------------------- ! -->
<div class="wrap-right-box h-100 d-flex align-items-center col-lg-6 col-md-5">
<div class="container ps-3 pe-0">
<h1 class="comming-soon-text">comming soon</h1>
<a class="back-to-home" type="button" href="home.html">back to home</a>
</div>
</div>
</div>
<script src="public/content/js/validate-inputs-comming-soon.js"></script>
</body>
</html>