-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubscribe.html
102 lines (47 loc) · 2.72 KB
/
Subscribe.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
<!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>Harvesta</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="shortcut icon" href="./Harvesta.ico" type="image/x-icon">
</head>
<body>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<div class="container">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="/" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<svg class="bi me-2" width="40" height="32"> <img src="./Harvesta.png" alt="Logo" href="./index.html"> </svg>
<span style="font-family: 'Times New Roman', Times, serif;" class="fs-4 mx-3" href="./index.html">Harvesta</span>
</a>
<ul class="nav nav-pills my-3">
<li class="nav-item"><a href="./Features.html" class="nav-link">Features</a></li>
<li class="nav-item"><a href="./Subscribe.html" class="nav-link">Subscribe</a></li>
<li class="nav-item"><a href="./AdminLogin.html" class="nav-link active" aria-current="page">Admin Login</a></li>
</ul>
</header>
</div>
<div class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg">
<form>
<div class="mb-3">
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter Email Address Here">
<div id="emailHelp" class="form-text">We'll never share your email with anyone else.</div>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Check me out</label>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<footer class="py-5 text-center text-body-secondary bg-body-tertiary">
<p>Harvesta - Agriculture with Tech by Armed developers(Team Members- Ashish Verma, Rheetik Sharma, Meet Jain)</p>
<p class="mb-0">
<a href="#">Code Relay 2.0 Hackathon 2023</a>
</p>
</footer>
</div>
</body>
</html>