-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathresponse.html
More file actions
executable file
·66 lines (59 loc) · 2.03 KB
/
response.html
File metadata and controls
executable file
·66 lines (59 loc) · 2.03 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>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google OAuth</title>
<link rel="stylesheet" href="assets/styles/response.css" />
</head>
<body>
<div id="loading">
<div class="spinner"></div>
<h1 id="status-title">Processing...</h1>
<p id="status-message">Please wait while we secure your session and redirect you.</p>
</div>
<div id="msg-error"></div>
<div style="display: none" class="card" id="container">
<form id="setPasswordForm" autocomplete="on">
<div id="passwordBox">
<h2>Sign Up</h2>
<input
class="user-input"
type="text"
name="name"
placeholder="Full Name*"
autocomplete="name"
required
>
<input
class="user-input"
type="email"
name="email"
placeholder="Email"
autocomplete="email"
required
>
<input
class="user-input"
type="password"
name="password"
placeholder="Create Password"
autocomplete="new-password"
required
>
<input
class="user-input"
type="password"
name="confirm_password"
placeholder="Confirm Password"
autocomplete="new-password"
required
>
<button id="signup-btn" type="submit">Sign Up</button>
</div>
</form>
</div>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="assets/scripts/response.js"></script>
</body>
</html>