-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (31 loc) · 1.53 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
<!-- This is the main page of the website. When a user access this domain they can sign in by entering their username
and password; or they can register and account. The CSS file used to style this page is styles.css. Some google fonts
where imported via the link tag. -->
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>CosmicContact.space</title>
<link rel = "stylesheet" href = "/css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Bangers&family=Play:wght@400;700&display=swap" rel="stylesheet">
<link rel = "icon" href = "favicon.ico">
<script type="text/javascript" src="/js/md5.js"></script>
<script type="text/javascript" src="/js/code.js"></script>
</head>
<body>
<div class = "Rectangle">
<div class = "Center">
<form>
<h1>Cosmic Contacts</h1>
<input id = "loginName" class = "Username" type = "text" placeholder = "Username"> <br>
<input id = "loginPassword" class = "Password" type = "password" placeholder = "Password"> <br>
<button id = "logInButton" class = "Sign-in" type = "button" onclick = "doLogIn()">Sign in</button>
<a href = "/register">
<button id = "registerButton" class = "Register" type = "button">Register</button>
</a>
<div id="loginResult"></div>
</form>
</div>
</div>
</body>
</html>