From c80b410fc21dc662d363e5eb3823a446bbb92d88 Mon Sep 17 00:00:00 2001
From: Woraprat <73052317+aeworaprat@users.noreply.github.com>
Date: Sat, 4 Mar 2023 22:21:44 +0700
Subject: [PATCH] update login fail

---
 .../application/views/login/v_login_fail.php  | 64 ++++++++++++++++++-
 1 file changed, 61 insertions(+), 3 deletions(-)

diff --git a/html/exhibition/application/views/login/v_login_fail.php b/html/exhibition/application/views/login/v_login_fail.php
index 3ed90f5..3b7bf0e 100644
--- a/html/exhibition/application/views/login/v_login_fail.php
+++ b/html/exhibition/application/views/login/v_login_fail.php
@@ -1,3 +1,61 @@
-login fail
-<br>
-<a href="<?php echo site_url() . "/Login/show_login"; ?>">back to hone page</a>
+<style>
+
+*{
+    transition: all 0.6s;
+}
+
+html {
+    height: 100%;
+}
+
+body{
+    font-family: 'Lato', sans-serif;
+    color: #888;
+    margin: 0;
+}
+
+#main{
+    display: table;
+    width: 100%;
+    height: 100vh;
+    text-align: center;
+}
+
+.fof{
+	  display: table-cell;
+	  vertical-align: middle;
+}
+
+.fof h1{
+	  font-size: 50px;
+	  display: inline-block;
+	  padding-right: 12px;
+	  animation: type .5s alternate infinite;
+}
+
+@keyframes type{
+	  from{box-shadow: inset -3px 0px 0px #888;}
+	  to{box-shadow: inset -3px 0px 0px transparent;}
+}
+
+</style>
+<div class="wrapper">
+<nav class="navbar navbar-expand-lg bg-white fixed-top " style="padding: 10px; z-index: 10;" on-scroll="400">
+    <div class="container" style="margin-left: 100px;">
+        <div class="navbar-translate">
+            <a class="navbar-brand" rel="tooltip" data-placement="bottom" href=''>
+                
+            </a>
+			<!-- <a href="<?php //echo site_url() . "/Login/show_login"; ?>" style="text-align:center">back to hone page</a> -->
+        </div>
+    </div>
+</nav>
+    <div id="main">
+        <div class="fof">
+                <h1>Login Fail</h1><br>
+                <a class="btn" href='<?php echo site_url() . "/Login/show_login"; ?>'>Back to hone page</a>
+        </div>
+    </div>
+</div>
+
+
-- 
GitLab