-
Notifications
You must be signed in to change notification settings - Fork 3
/
user_account.ml
355 lines (355 loc) · 16 KB
/
user_account.ml
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
let user_account_layout ~csrf (user : User_model.user) ~active_cookie_value
current_time =
Tyxml_html.(
section
~a:[ a_class [ "p-4 bg-gray-50 my-1" ] ]
[
p
~a:[ a_class [ "text-3xl font-semibold uppercase" ] ]
[ txt (user.name ^ " - Account") ];
section
~a:[ a_class [ "my-5" ] ]
[
div
~a:[ a_class [ "grid grid-cols-2 my-4" ] ]
[
div
[
h2
~a:[ a_class [ "font-semibold text-xl" ] ]
[ txt "Profile Information" ];
];
div
[
div
[
p ~a:[ a_class [ "text-sm my-2" ] ] [ txt "Name" ];
input
~a:
[
a_class
[
"w-full py-3 px-2 rounded disabled \
bg-gray-100";
];
a_disabled ();
a_input_type `Text;
a_value user.name;
]
();
];
div
[
p
~a:[ a_class [ "text-sm my-2" ] ]
[
txt "Email";
(match user.email_verified with
| Some _ ->
span
~a:[ a_class [ "text-primary-500" ] ]
[ txt " verified" ]
| None ->
span
~a:[ a_class [ "text-secondary-500" ] ]
[ txt " not verified" ]);
];
input
~a:
[
a_class
[
"w-full py-3 px-2 rounded disabled \
bg-gray-100";
];
a_disabled ();
a_input_type `Text;
a_value user.email;
]
();
];
];
];
hr ();
div
~a:[ a_class [ "grid grid-cols-2 my-4" ] ]
[
div
[
h2
~a:[ a_class [ "font-semibold text-xl" ] ]
[ txt "Update Password" ];
];
div
[
p ~a:[ a_id "form-alert"; a_class [ "my-4" ] ] [];
div
[
p
~a:[ a_class [ "text-sm my-2" ] ]
[ txt "Current Password" ];
input
~a:
[
a_input_type `Password;
a_name "current_password";
a_id "current-password";
a_class
[
"ring-primary-100 mt-1.5 transition \
appearance-none block w-full px-3 py-3 \
rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 \
bg-opacity-0 hover:bg-opacity-50 \
focus:bg-opacity-50 ring-primary-200 \
focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
();
];
div
[
p
~a:[ a_class [ "text-sm my-2" ] ]
[ txt "New Password" ];
input
~a:
[
a_input_type `Password;
a_name "new_password";
a_id "new-password";
a_class
[
"ring-primary-100 mt-1.5 transition \
appearance-none block w-full px-3 py-3 \
rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 \
bg-opacity-0 hover:bg-opacity-50 \
focus:bg-opacity-50 ring-primary-200 \
focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
();
];
div
[
p
~a:[ a_class [ "text-sm my-2" ] ]
[ txt "confirm Password" ];
input
~a:
[
a_input_type `Password;
a_name "confirm_password";
a_id "confirm-password";
a_class
[
"ring-primary-100 mt-1.5 transition \
appearance-none block w-full px-3 py-3 \
rounded-xl shadow-sm border \
hover:border-primary-200\n\
\ \
focus:border-primary-300 bg-primary-50 \
bg-opacity-0 hover:bg-opacity-50 \
focus:bg-opacity-50 ring-primary-200 \
focus:ring-primary-200\n\
\ \
focus:ring-[1px] focus:outline-none";
];
]
();
];
div
~a:[ a_class [ "my-4 w-1/2 text-center" ] ]
[
button
~a:
[
a_id "password-button";
a_onclick "updatePassword()";
a_class
[
"py-3 rounded bg-primary-500 \
hover:bg-primary-800 w-full text-gray-50 \
font-semibold";
];
]
[ txt "Save" ];
];
];
];
hr ();
div
~a:[ a_class [ "grid grid-cols-2 my-4" ] ]
[
div
[
h2
~a:[ a_class [ "font-semibold text-xl" ] ]
[ txt "Browser Sessions" ];
];
div
[
div
[
p
~a:[ a_class [ "my-2" ] ]
[
txt
"If necessary, you may logout of all of your \
other browser sessions across all of your \
devices. Some of your recent sessions are \
listed below; however, this list may not be \
exhaustive. If you feel your account has been \
compromised, you should also update your \
password.";
];
];
div
(List.map
(fun (cookie : User_model.cookie) ->
div
~a:[ a_class [ "flex items-center my-4" ] ]
[
div
[
i
~a:
[
a_class
[ "fa-solid fa-desktop text-5xl" ];
]
[];
];
div
~a:[ a_class [ "ml-3" ] ]
[
(* TODO: Parse the user-agent string to extract information like OS, browser etc*)
p
~a:[ a_class [ "text-gray-600" ] ]
[
txt
(match cookie.user_agent with
| Some agent -> agent
| None -> "User-Agent unavailable");
];
p
~a:[ a_class [ "text-sm text-gray-600" ] ]
[
txt "Last active: ";
(if
String.equal cookie.value
active_cookie_value
then
span
[
span [ txt "now" ];
span
~a:
[
a_class
[
"text-primary-500 \
font-semibold";
];
]
[ txt " This device" ];
]
else
span
[
txt
(Utils.TimeHelper.time_ago
~current_time
~check_time:
cookie.last_access);
]);
];
p
~a:[ a_class [ "text-sm text-gray-600" ] ]
[
txt "First use: ";
span
[
txt
(Utils.TimeHelper.time_ago
~current_time
~check_time:cookie.created_at);
];
];
p
~a:[ a_class [ "text-sm text-gray-600" ] ]
[
(match
Ptime.add_span cookie.created_at
(Ptime.Span.of_int_s
cookie.expires_in)
with
| Some ptime ->
span
[
txt
("Expires on "
^ Utils.TimeHelper
.string_of_ptime ptime);
]
| None ->
span
[ txt "Expiry time not available" ]);
];
(if
not
(String.equal cookie.value
active_cookie_value)
then
a
~a:
[
a_href
("account/session/close/"
^ cookie.value ^ "/" ^ csrf);
a_class
[
"hover:text-secondary-800 \
text-secondary-500 \
transition-colors \
cursor-pointer";
];
]
[ txt "Close session" ]
else div []);
];
])
(List.filter
(fun (cookie : User_model.cookie) ->
String.equal cookie.name User_model.session_cookie)
user.cookies));
div
~a:[ a_class [ "my-4 w-1/2 text-center" ] ]
[
button
~a:
[
a_id "session-button";
a_onclick "closeSessions()";
a_class
[
"py-3 rounded bg-secondary-500 \
hover:bg-secondary-800 w-full text-gray-50 \
font-semibold";
];
]
[ txt "Logout all other sessions" ];
];
];
];
];
])