-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserAuth.html
More file actions
37 lines (30 loc) · 1.02 KB
/
userAuth.html
File metadata and controls
37 lines (30 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="userAuth.css">
<script defer src="script.js"></script>
<script defer src="userAuth.js"></script>
</head>
<body class="userAuth">
<div class="authContainer">
<div class="imgcontainer">
<video id="video" width="360" height="360" autoplay muted></video>
</div>
<input type="email" placeholder="Email" id="txtEmail">
<input type="password" placeholder="Password" id="txtPassword">
<button id="buttonStyle" class="btn btn-action">
Login
</button>
<button id="buttonStyle" class="btn btn-secondary">
Sign Up
</button>
<button id="buttonStyle" class="btn btn-avtion hide">
Log out
</button>
<button class="backButton" onclick="backToHome()">Back Home</button>
</div>
</body>
</html>