-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
65 lines (57 loc) · 2.93 KB
/
index.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
<!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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://avatars.githubusercontent.com/u/97837242?s=400&u=c2b0ab3d8f8d473f2f71a5621a9695e9ec351b2f&v=4"
rel="icon">
<!-- Custom CSS -->
<link rel="stylesheet" href="style.css">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<title>JY prayer request </title>
</head>
<body>
<div class="container">
<div class="row">
<div class="main-box col-lg-5 col-md-8 mx-auto p-4 rounded">
<h2 class="text-center fw-bold mb-5">Prayer Request 🛐</h2>
<form name="prayer-request" id="pr">
<div id="form_alerts"></div>
<div class="form-group mb-4">
<label for="name" class="form-label">Name*</label>
<input type="text" id="name" name="name" class="form-control"
placeholder="Enter your name or type 'believer' " required>
</div>
<div class="form-group mb-4">
<label for="year" class="form-label">Year*</label>
<input type="ph" id="class" name="year" class="form-control"
placeholder="Enter your year of study" required>
</div>
<div class="form-group mb-4">
<label for="request" class="form-label">Request*</label>
<textarea id="request" name="request" class="form-control"
placeholder="Enter your request or type 'personal' " rows="5" required></textarea>
</div>
<div>
<div class="mt-5">
<button class="btn btn-send me-3" type="submit">Send request 🙏</button>
<button class="btn btn-danger" type="reset">Reset the form!</button>
</div>
</div>
</form>
</div>
</div>
<footer>
<a class="footer" href="https://cipherguys.github.io"><h6 class="text-center mt-5">Powered by cipherGUYS ⚡</h6></a>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
<script src="main.js"></script>
</body>
</html>