-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact_us.html
83 lines (76 loc) · 3.34 KB
/
contact_us.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script
src="https://kit.fontawesome.com/2d323a629b.js"
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/tailwind_style.css">
<link rel="stylesheet" href="css/style.css">
<title>Contact Us | QC@UCI</title>
</head>
<p style="margin-bottom:200px;"></p>
<body>
<header class="header">
<a href="index.html">
<img src="image/navy_anteater_bloch.png" width="150" alt="Home">
</a>
<nav>
<ul class="header__nav">
<li><a href="index.html">Home</a></li>
<li><a href="join.html">Join</a></li>
<li><a href="learn.html">Learn</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="event.html">Events</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="contact__title">Contact Us</div>
<div class="flex justify-center">
<form class="w-full max-w-lg" name="input" accept-charset="utf-8" action="https://formspree.io/[email protected]" method="POST">
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full px-3 mb-6 md:mb-0">
<label class="block uppercase tracking-wide text-gray-200 text-xs font-bold mb-2" for="grid-first-name">
Name
</label>
<input class="appearance-none block w-full bg-gray-200 text-gray-700 border rounded py-3 px-4 mb-3 leading-tight focus:outline-none focus:bg-white" id="grid-first-name" type="text" placeholder="Peter Anteater" name="Name">
</div>
</div>
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full px-3">
<label class="block uppercase tracking-wide text-gray-200 text-xs font-bold mb-2" for="grid-password">
E-mail
</label>
<input class="appearance-none block w-full bg-gray-200 text-gray-700 border border-gray-200 rounded py-3 px-4 mb-3 leading-tight focus:outline-none focus:bg-white focus:border-gray-500" id="email" type="email" name="_replyto">
<p class="text-gray-600 text-xs italic">Please use your UCI email if you have one</p>
</div>
</div>
<div class="flex flex-wrap -mx-3 mb-6">
<div class="w-full px-3">
<label class="block uppercase tracking-wide text-gray-200 text-xs font-bold mb-2" for="grid-password">
Message
</label>
<textarea class="resize-y appearance-none block w-full bg-gray-200 text-gray-700 border border-gray-200 rounded py-3 px-4 mb-3 leading-tight focus:outline-none focus:bg-white focus:border-gray-500 h-48 resize-none" id="message" name="message"></textarea>
</div>
</div>
<div class="md:flex md:items-center">
<div class="md:w-1/3">
<input class="shadow bg-teal-400 hover:bg-teal-400 focus:shadow-outline focus:outline-none text-white font-bold py-2 px-4 rounded" type="submit", value="Send">
</div>
<div class="md:w-2/3"></div>
</div>
</form>
</div>
<footer>
<div class="footer__copyRight">
<p><a href="./contact_us.html">Copyright © 2024 Quantum Computing @ UCI. All Rights Reserved.</a></p>
</div>
</footer>
</body>
</html>