-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (141 loc) · 5.28 KB
/
Copy pathindex.html
File metadata and controls
160 lines (141 loc) · 5.28 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!--
============================================================
File: index.html
Description: Client login page.
Last Modified By: Matthew
Last Modified On: April 20 @ 5:14 PM
Changes Made: Standardized structure and comments for readability consistency.
============================================================
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DUO+</title>
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<!-- Bootstrap + HopeUI CSS -->
<link href="assets/css/hope-ui.min.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
</head>
<body class="d-flex align-items-center justify-content-center min-vh-100 v-center-page">
<div class="container text-center login-container" style="padding-top: 3.5rem;">
<!-- Branding -->
<div class="logo-section mb-3">
<img
src="assets/images/DUOPlusDropLogo.png"
alt="DUO Plus - Home"
class="mb-1"
style="width: 200px;"
>
</div>
<!-- Subtitle -->
<h5 id="subtitle" class="subtitle-text fw-medium mb-4" style="color: #174593;">
Connecting patients with free<br>care through DUO
</h5>
<!-- Login Card -->
<div class="card shadow-lg border-0 rounded-4 mb-4 mt-4 card-has-lang">
<div class="card-lang-corner">
<div id="divLanguageSwitch">
<!-- Keep native select for accessibility/integration; custom toggle is visual control -->
<select
id="selLanguageSwitch"
name="languageSwitch"
class="d-none"
aria-hidden="true"
>
<option value="en">EN</option>
<option value="es">ES</option>
</select>
<div class="lang-toggle" role="radiogroup" aria-label="Select language">
<button type="button" class="lang-btn active" data-lang="en" aria-pressed="true">EN</button>
<button type="button" class="lang-btn" data-lang="es" aria-pressed="false">ES</button>
</div>
</div>
</div>
<div class="card-body p-4">
<form id="clientLoginForm" novalidate>
<div class="mb-3 text-start">
<label id="lblClientEmail" for="txtClientEmail" class="form-label fw-semibold">Email</label>
<input
id="txtClientEmail"
type="email"
name="email"
class="form-control"
required
autocomplete="email"
>
</div>
<div class="mb-3 text-start">
<label id="lblClientPassword" for="txtClientPassword" class="form-label fw-semibold">Password</label>
<input
id="txtClientPassword"
type="password"
name="password"
class="form-control"
required
autocomplete="current-password"
>
</div>
<button id="btnClientLogin" type="button" class="btn btn-primary w-100 rounded-2">Login</button>
</form>
</div>
</div>
<!-- Account Actions -->
<div class="register-section">
<div class="d-flex flex-column align-items-center justify-content-center gap-1 mb-3">
<a
id="btn2Register"
href="pages/register.html"
class="fw-semibold text-decoration-none text-center text-nowrap"
style="color: #174593;"
>
Register
</a>
<hr class="w-75 my-1" style="height: 1px; background-color: #ccc; border: none;">
<a
id="btn2ForgetPass"
href="pages/forgetpass.html"
class="fw-semibold text-decoration-none text-center text-nowrap"
style="color: #174593;"
>
Forgot Password?
</a>
</div>
<!-- Partner Branding + Developer Panel -->
<div class="d-flex flex-column align-items-center">
<img
src="assets/images/lifeChurchLogo.webp"
alt="Life Church - Partner Organization"
class="mb-3"
style="width: 200px;"
>
<!-- Shown only when dev mode is active -->
<div id="devIndexPanel" class="dev-only d-none w-100">
<div class="dev-inline-panel">
<div class="dev-inline-header">
<span>Developer Mode</span>
<button id="devIndexDisableBtn">Disable</button>
</div>
<div class="dev-inline-links">
<a href="/portal/">API Portal</a>
<a href="pages/registration-dashboard.html">Reg. Dashboard</a>
<a href="pages/event-dashboard.html">Event Dashboard</a>
<a href="pages/waitingroom.html">Waiting Room</a>
<a href="pages/service-scan.html">Service Scan</a>
<a href="pages/food-truck.html">Food Truck</a>
<a href="pages/chiropractor.html">Chiropractor</a>
<a href="pages/admin.html">Admin</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- JS Dependencies -->
<script src="assets/js/alerts/sweetalert2.all.min.js"></script>
<script src="js/login.js"></script>
<script src="js/lang.js"></script>
<script src="js/devMode.js"></script>
</body>
</html>