-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
executable file
·83 lines (74 loc) · 4.35 KB
/
contacts.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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.4.1/jquery.cookie.min.js"></script>
<script src="final.js"></script>
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<title>Contact us</title>
</head>
<body>
<header>
<table id="account">
<tr><td><div class="dropdown" id='logindiv' style="float:right;">
<button class="dropbtn" style="font-size:12pt" onclick="show_login()"> Log In </button>
<div id="login" class="dropdown-content" style="right:0">
<form method="POST" class="topbtn safe" name="login" id="loginform">
<label id="username" class="safe"> Username: <input name="username" type="text" id="user" class="safe"/></label>
<label id="password" class="safe"> Password: <input name="password" type="password" id="pass" class="safe"/></label>
<p><input type="submit" value="Enter" class="safe"/> <input type="reset" value="Clear" class="safe"/></p>
</form>
</div>
</div></td>
<td><div class="dropdown" id='signupdiv' style="float:right;">
<button class="dropbtn" style="font-size:12pt" onclick="show_signup()"> Sign Up </button>
<div id="signup" class="dropdown-content" style="right:0">
<form method="POST" class="topbtn safe" name="signup" id="signupform">
<label class="safe"> Username: <input type="text" id="new_username" name="new_pass" class="safe"/></label>
<span style="font-size:10pt;" class="safe"> (6-10 Alphanumeric characters) </span><br><br>
<label class="safe"> Password: <input type="password" id="new_password" name="new_pass" class="safe"/></label>
<span style="font-size:10pt;" class="safe"> (6-10 Alphanumeric characters, must have 1 uppercase, 1 lowercase, 1 number) </span><br><br>
<label class="safe"> Re-Enter Password: <input type="password" id="re_password" name="re_pass" class="safe"/></label>
<p><input type="submit" value="Enter" class="safe" /> <input type="reset" value="Clear" class="safe"/></p>
</form>
</div>
</div></td></tr>
<tr><td colspan=2><div id="signout" class="signout topbtn safe" style="float:right;">
<label class="safe" id="display_user"> Username</label>
<button style="font-size:12pt" onclick="logout();"> Sign Out </button>
</div></td></tr>
</table>
<a href="final.html"><img alt="logo" src="images/Website_logo.png" width="160"></a>
<h1>
Drunk on Knowledge
</h1>
<div class="navRow">
<a href="history_page.html" target="_self">History</a>
<a href="science_page.html" target="_self">Science</a>
<a href="culture_page.php" target="_self">Culture</a>
<a href="contacts.html" target="_self">Contact Us</a><br>
</div>
</header>
<div class="contact" style="width:70%;">
<h2> A Bit About the Authors </h2>
<h3> James Easton </h3>
<p> Hello! My name is James, and I am an undergraduate student at the University of Texas
at Austin. I am currently studying Aerospace Engineering.</p>
<p> Email James at: <a href="mailto:jweaston99@gmail.com"> jweaston99@gmail.com </a></p>
<h3> Erica McCarty </h3>
<p> Hi, I'm Erica and I'm a senior math major at UT Austin. I also work for the biology
department as a student assistant in the UT Plant Resources Center.</p>
<p> Email Erica at: <a href="mailto:ericamcc@utexas.edu"> ericamcc@utexas.edu </a></p>
</div>
<br>
<footer class='footer'>
<p>Moonshiners: Drunk on Knowledge ©<br>
James Easton & Erica McCarty<br>
July 19, 2021</p>
</footer>
</body>
</html>