aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/login_page.php
diff options
context:
space:
mode:
authorwinter2024-12-31 22:30:16 +0000
committerwinter2024-12-31 22:31:26 +0000
commit4cd7017da9a37e5b9f38c3f50dd1c904ea41cbcb (patch)
treed77f1fd223dae44f40b22c9810aeba238733310d /templates/login_page.php
parent982e6213622bcb78a40d17f54cda27225a1d84b3 (diff)
implement user accounts and login
Diffstat (limited to 'templates/login_page.php')
-rw-r--r--templates/login_page.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/login_page.php b/templates/login_page.php
new file mode 100644
index 0000000..338330e
--- /dev/null
+++ b/templates/login_page.php
@@ -0,0 +1,4 @@
+<?php call_template('skeleton', ['pageTitle' => __('login.pageTitle')], function () {
+ global $email, $failed;
+ call_template('login_form', ['email' => $email, 'failed' => $failed]);
+}); \ No newline at end of file