-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<script type='text/javascript' src='https://cdn.scaledrone.com/scaledrone.min.js'></script>
<script type='text/javascript' src="js/welcome.js"></script>
<title>Bookings</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/welcome.css">
</head>
<body>
<img id="MLogo" src="Images/LogoTransperent.png" alt="header">
<section class="animation_arrow">
<a href="#menu_screen">
<div class="arrow">
<span></span>
<span></span>
<span></span>
</div>
</a>
<fieldset id="menu_screen">
<legend>Sign Up Here!</legend>
<section class="formFill">
<form>
<div id ="email">
<p>
Please enter your username (e.g. s1234567@uq.edu.au):
</p>
<span>
<input id="uqEmail" class="btn">
</span>
</div><br>
<div>
<label>
First name:
</label><br>
<span>
<input class="btn" id="userInputFname" type="text">
</span>
</div>
<div>
<label>
Last name:
</label><br>
<span>
<input class="btn" id="userInputLname" type="text">
</span>
</div>
<div class="login_button">
<p>
Please input your password:
</p>
<span>
<input class ="btn" type="Password">
</span>
</div>
<input id="loginbutton" type='button' value="Login" onclick ="getName(); nextpageOnAlert();">
</form>
</section>
</fieldset>
<footer>
</footer>
</body>
</html>