-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·51 lines (49 loc) · 1.85 KB
/
index.php
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
<!DOCTYPE HTML>
<html>
<head>
<title>Welcome</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link rel="icon" type="image/png" href="../resources/logo/logo.png"/>
</head>
<body>
<div class="fullscreen-bg">
<video loop muted autoplay poster="resources/video/WelcomeVideo.JPG" class="fullscreen-bg__video">
<source src="resources/video/WelcomeVideo.webm" type="video/webm">
<source src="resources/video/WelcomeVideo.mp4" type="video/mp4">
</video>
</div>
<a onclick="hideshow()"><div class="show" id="left">
Register
</div></a>
<div class="show" id="right" onclick="location.href='../login/index.php';" style="cursor:pointer;">
Login
</div>
<div id="hide">
<form name="selection" action="passcode/index.php" method="post">
<span id="spans">Register</span>
<br>
<hr>
Name
<br>
<input type="text" name="fullname" placeholder="Name" class="input"><br>
Phone
<br><input type="text" name="phone" placeholder="(XXX)XXX-XXXX" class="input"><br>
Email
<br><input type="text" name="email" placeholder="Email" class="input"><br>
Password
<br><input type="password" name="password" placeholder="Password" class="input"><br>
Confirm Password
<br><input type="password" name="confirm" placeholder="Password" class="input"><br>
<input type="submit" value="Submit" id="submitbtn">
</form>
</div>
</body>
<script>
function hideshow(){
document.getElementById("left").style.display="none";
document.getElementById("right").style.display="none";
document.getElementById("hide").style.display="block";
}
</script>
</html>