-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-r.html
47 lines (47 loc) · 2.42 KB
/
index-r.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="style-r.css">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<style>
.error { color: red; }
</style>
</head>
<body>
<div class="container-fluid min-vh-100 d-flex align-items-center justify-content-center">
<div class="row w-75 shadow-lg">
<div class="col-md-6 d-flex flex-column justify-content-center align-items-center bg-primary text-white">
<h1 class="mb-4">HELLO!</h1>
<img src="Picture/mountain.svg" alt="Mountain" class="img-fluid" style="max-width: 60%;">
</div>
<div class="col-md-6 bg-light p-5">
<h2 class="text-center mb-4">SIGN UP</h2>
<form id="signup-form">
<div class="mb-3">
<label for="username" class="form-label">New Username</label>
<input type="text" class="form-control" id="username" required>
<span class="error" id="usernameError"></span>
</div>
<div class="mb-3">
<label for="password" class="form-label">New Password</label>
<input type="password" class="form-control" id="password" required>
<span class="error" id="passwordError"></span>
</div>
<div class="mb-3">
<div class="g-recaptcha" data-sitekey="6Lc0JTMqAAAAAA6zBNrJ9Z5IC54OpGnw0ozKUfVX"></div>
<span class="error" id="recaptchaError"></span>
</div>
<button type="submit" class="btn btn-primary w-100">Submit</button>
</form>
<p class="text-center mt-3">Already have an account? <a href="index-l.html" class="text-decoration-none">Login</a></p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="main-r.js"></script>
</body>
</html>