-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·49 lines (33 loc) · 1.63 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
<html>
<head>
<title>KeepCont4ct</title>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/styles.css" rel="stylesheet">
<link href="scss/style3.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
</head>
<body style="background-color: white; background-image: url(images/background2.jpg);">
<header id="header"><img id="HeaderLogo" src="images/logo.png" alt=""></header>
<div class="frontDiv">
<div id="addDiv">
<h3>Register</h3>
<input type="text" id="fname" name="fname" placeholder="First Name"><br>
<input type="text" id="lname" name="lname" placeholder="Last Name"><br>
<input type="text" id="uname" name="uname" placeholder="Username"><br>
<input type="password" id="pass" name="pass" placeholder="Password"><br>
<button type="button" value="Register" id="registerButton" onclick="register()">Register</button>
</div>
<div class="vl"></div>
<div id="loginDiv">
<h3>Login</h3>
<input type="text" id="loginName" name="uname" placeholder="Username"><br>
<input type="password" id="loginPassword" name="pass" placeholder="Password"><br>
<button type="button" value="Login" id="loginButton" onclick="doLogin();">Login</button>
<span id="loginResult"></span>
</div>
<br><br><br><br>
<div><h1 class="line-1 anim-typewriter" style="color:white;">Let's Keep in Cont4ct</h1></div>
</div>
</body>
</html>