diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-05-05 04:07:05 +0300 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-05-05 04:07:05 +0300 |
| commit | 537673748f0b01539fc5839c2af1bacbefafc86d (patch) | |
| tree | c2032ff9efb06257bbf70f3329524d86bc2cb6e3 /public/app/views/user/login.php | |
| parent | 63f714d5a78b765c117ebf6bbdfdbd748dd45644 (diff) | |
| download | gyraf1gov-537673748f0b01539fc5839c2af1bacbefafc86d.tar.gz gyraf1gov-537673748f0b01539fc5839c2af1bacbefafc86d.tar.bz2 gyraf1gov-537673748f0b01539fc5839c2af1bacbefafc86d.zip | |
the penalty form (input, new record)
Diffstat (limited to 'public/app/views/user/login.php')
| -rw-r--r-- | public/app/views/user/login.php | 82 |
1 files changed, 45 insertions, 37 deletions
diff --git a/public/app/views/user/login.php b/public/app/views/user/login.php index 58bfdbb..871e501 100644 --- a/public/app/views/user/login.php +++ b/public/app/views/user/login.php @@ -2,58 +2,66 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title><?=SITE_TITLE?> - Είσοδος Χρήστη</title> + <title><?=SITE_TITLE?> - Είσοδος Χρήστη</title> - <?php // header includes + <?php // header includes //////////////////////////////////////////////////////////////////////// Render::view('components/header_includes'); ?> - - <style> - html,body{ - padding:0; margin:0; - font-size:1.25em; - color: #037; background: #eee; - line-height:1.2em; - } - h3 { - font-size: 2em; font-style: normal; - font-weight: 400; - color: #05a; - margin: 0; padding: 5px; - opacity: 0.27; - border-bottom: 1px solid #05a; - } - .container { display: flex; height: 100vh; align-items:center; } - .content { position: relative; - max-width:480px; width: 100%; - margin: auto auto; padding: 1.5em; - justify-center: center; - background: #e3e3e3; - border-radius: 8px; - box-shadow: 1px 5px 7px #7777; - } - </style> +<style> +:root { /* login-form overides */ + --form-content-font-size: 1rem; + --form-input-height: 34px; + --select2-arrow-top: 1px; +} +</style> </head> -<body class="classroom"> +<body class="office central-form"> + <div class='container'> - <div class='content'> - <h4>Είσοδος Χρήστη</h4> + <div class='content max420px'> + + <div class="info"> + <h4>1o Γυμνάσιο Ραφήνας</h4> + <p>Πλατφόρμα ηλεκτρονικών αιτήσεων και δημιουργίας διαδικαστικών εγγράφων.</p> + </div> + + <div class="content-form"> + <h4>Είσοδος</h4> <hr /> <form method="post"> - <div class="mb-3"> - <label for="exampleInputEmail1" class="form-label">Email</label> + <div class="form-group"> + <label for="exampleInputEmail1">Email</label> <input type="email" class="form-control form-control-sm" name="email" aria-describedby="emailHelp" required> </div> - <div class="mb-3"> - <label for="exampleInputPassword1" class="form-label">Κωδικός Πρόσβασης</label> + <div class="form-group"> + <label for="exampleInputPassword1">Κωδικός πρόσβασης</label> <input type="password" class="form-control form-control-sm" name="password" required> </div> <br /> - <button type="submit" class="btn btn-primary btn-sm col-12">Επιβεβαίωση και Είσοδος</button> + <div class="row justify-content-center"><div class="col-6"> + <button type="submit" class="btn btn-primary btn-sm col-12">Σύνδεση</button> + </div></div> </form> + </div> + + <div class="info"> + <!-- + <p>Αν ξεχάσατε τον κωδικό πρόσβασης μπορείτε να δημιουργήσετε ένα νέο (υπο κατασκευή).</p> + --> + <p> + Εαν δικαιούστε αλλά δεν έχετε πρόσβαση στο site, παρακαλούμε επικοινωνήστε + με τη διεύθυνση του σχολείου προκειμένου να σας αποσταλεί σχετική πρόσκληση. + </p> + <p> + Ο ιστότοπος χρησιμοποιεί cookies τα οποία έχουν αποκλειστικά λειτουργικό ρόλο. + Η χρήση των υπηρεσιών του site συνεπάγεται την αποδοχή διατήρησης αυτών των cookies. + </p> + </div> + </div> </div> + </body> <script> @@ -80,7 +88,7 @@ window.location.href = data.status.goto; } else { - alert('Wrong credentials; please try again'); + alert('Τα στοιχεία πρόσβασης που δώσατε είναι λάθος. Παρακαλώ προσπαθήστε ξανά.'); } }); |
