-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
66 lines (53 loc) · 1.76 KB
/
Copy pathindex.htm
File metadata and controls
66 lines (53 loc) · 1.76 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
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
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mForce • Login</title>
<base href="/mForce/">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/mForce/web/style.css">
</head>
<body>
<div class="auth-wrap">
<div class="auth-card">
<h1>mForce</h1>
<p class="subtitle">MultiForce Security Framework</p>
<!-- LOGIN -->
<div id="loginBox">
<input id="loginEmail" type="email" placeholder="Email" required>
<input id="loginPassword" type="password" placeholder="Password" required>
<label class="robot">
<input type="checkbox" id="robotLogin">
<span>I’m not a robot</span>
</label>
<button id="loginBtn">Login</button>
<div class="divider">or</div>
<button id="googleLogin" class="google-btn">Continue with Google</button>
<p class="switch">
Don’t have an account?
<span id="showRegister">Register</span>
</p>
</div>
<!-- REGISTER -->
<div id="registerBox" class="hidden">
<input id="regName" type="text" placeholder="Name" required>
<input id="regEmail" type="email" placeholder="Email" required>
<input id="regPassword" type="password" placeholder="Password" required>
<label class="robot">
<input type="checkbox" id="robotRegister">
<span>I’m not a robot</span>
</label>
<button id="registerBtn">Create Account</button>
<p class="switch">
Already have an account?
<span id="showLogin">Login</span>
</p>
</div>
</div>
</div>
<div style="position:fixed;top:10px;right:10px;color:#0ff;z-index:9999">
index.html loaded
</div>
<script type="module" src="/mForce/web/script.js"></script>
</body>
</html>