-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofile_complition_form.html
More file actions
executable file
·90 lines (78 loc) · 3.2 KB
/
profile_complition_form.html
File metadata and controls
executable file
·90 lines (78 loc) · 3.2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Complete Your Profile</title>
<link rel="stylesheet" href="assets/styles/profile_complition_form.css"/>
</head>
<body>
<div class="form-box">
<h2>Complete Your Profile</h2>
<form>
<div class="card profile-header">
<img src="assets/images/demo_pp.jpg" id="profile-pic">
</div>
<div class="field">
<label>Full Name</label>
<input style="margin-bottom: 0" class="user-input" type="text" placeholder="Enter your name" required>
<h5 style="margin-top: 4px" id="user-id">Your User Id: eg. firstname@1234</h5>
</div>
<div style="display: none" class="field">
<label>Email</label>
<input class="user-input" type="email" placeholder="Enter your email" required>
</div>
<div class="field">
<label>Age</label>
<input class="user-input" type="number" placeholder="Enter age">
</div>
<div class="field">
<label>Favourite Subject</label>
<input class="user-input" type="text" placeholder="Enter subject">
</div>
<div class="field">
<label>Stream</label>
<input class="user-input" type="text" placeholder="Enter stream">
</div>
<div class="field">
<label>Education Level</label>
<select id="sltEdu">
<option value="">Select</option>
<option>Below 10th</option>
<option>10th (HSLC)</option>
<option>12th (HS)</option>
<option>Undergraduate</option>
<option>Postgraduate</option>
<option>Diploma</option>
</select>
</div>
</form>
<button id="submit-btn">Submit</button>
</div>
<div id="edit-popup" class="popup-overlay" style="display: none">
<div id="popup">
<div>
<img id="img-preview" src="assets/images/demo_pp.jpg" />
<input style="display: none" type="file" id="input-image" accept="image/jpeg">
</div>
<div>
<button class="edit-btn" id="cancel">Cancle</button>
<button class="edit-btn" id="edit">Edit</button>
<button class="edit-btn" id="save">Save</button>
</div>
</div>
</div>
<div id="login-popup" class="popup-overlay" style="display: none">
<div id="popup">
<p>❌</p>
<p>Your Account is not logged In</p>
<button id="redirect-to-login-btn">Go to Login Page</button>
</div>
</div>
<div id="loader" class="popup-overlay" style="display: none">
<div class="loader"></div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
<script src="assets/scripts/profile_complition_form.js"></script>
</body>
</html>