forked from nicky81818/1800_202310_DTC06
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFAQ.html
More file actions
111 lines (82 loc) · 4.71 KB
/
Copy pathFAQ.html
File metadata and controls
111 lines (82 loc) · 4.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>InsurUs</title>
<meta name="comp1800 template" content="My 1800 App">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="./images/logo_icon_black.png">
<!-- Bootstrap Library CSS CDN go here -->
<!-- Boostrap Library JS CDN go here -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
<!-- Other libraries go here -->
<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=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- Link to styles of your own -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<nav id="navbarPlaceholder"></nav>
<main>
<div class="jumbotron">
<h1 class="display-4">Frequently Asked Questions</h1>
<p class="lead"></p>
<hr class="my-4">
<b class="text-left">Q: How do I add and delete records?</b>
<!-- <div class="embed-responsive-16by9">
<iframe class="embed-responsive-16by9" width="560" height="315" src="https://www.youtube.com/embed/g0iJS0cSFvQ" frameborder="0" allowfullscreen="">
</iframe>
</div> -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/g0iJS0cSFvQ" allowfullscreen></iframe>
</div>
<b class="text-left">Q: How do I add and delete a provider? </b>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/uo-4rLX2_Dc" allowfullscreen></iframe>
</div>
<b class="text-left">Q: When will there be new features?</b>
<p class="text-left">A: New updates will be available in the coming weeks.</p>
<!-- <b class="text-left">Q: When I add a new record, how will it affect my previous records?</b>
<p class="text-left">A: *insert answer/video here.</p>
<b class="text-left">Q: Lorem ipsum dolor sit amet?</b>
<p class="text-left">A: *insert answer/video here.</p>
<p class="lead">
</p> -->
<h2>For other inquiries:</h2>
<form>
<label for="email">Your Email:</label><br>
<input type="text" id="Email" name="fname" value=""><br>
<label for="freeform">Your Question(s)/Concern(s):</label>
<br>
<textarea id="Question" name="freeform" rows="4" cols="28">
</textarea>
<br>
<input type="button" value="Submit" id="submitBTN" class="btn-secondary">
</form>
</div>
</main>
<!---------------------------------------------->
<!-- Your own JavaScript functions go here -->
<!---------------------------------------------->
<!-- Link to scripts of your own -->
<script src="./scripts/firebaseAPI_DTC06.js"></script>
<script src="./scripts/skeleton.js"></script>
<script src="./scripts/faq.js"></script>
</body>
</html>