login page fixes

This commit is contained in:
Ahmed 2024-09-12 15:07:19 +03:00
parent e63e6c2c1e
commit 73afeee79b
1 changed files with 21 additions and 21 deletions

View File

@ -1,6 +1,5 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -17,7 +16,7 @@
<meta name="msapplication-TileImage" content="/images/favicon/mstile-144x144.png">
<meta name="msapplication-config" content="/images/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<title>POS Diagnostic Assist - Login</title>
<link rel="stylesheet" href="/css/login-style.css">
</head>
@ -31,9 +30,10 @@
<div class="login-title">
<h3>POS Diagnostic Assist</h3>
<span id="version"></span>
<!-- <p class="login-title"> <br> </p> -->
<!-- <p class="login-title"> <br> </p> -->
</div>
<form class="login" action="/auth" method="post">
<% if (message) { %>
<div class="error-message">
@ -61,34 +61,34 @@
</form>
<div class="social-login">
<img class="logo" src="/images/favicon/favicon.ico" alt="" sizes="20px">
<h3>SERVICE VOLGA</h3>
<div class="social-icons">
<a href="#" class="social-login__icon fab fa-instagram"></a>
<a href="#" class="social-login__icon fab fa-facebook"></a>
<a href="#" class="social-login__icon fab fa-twitter"></a>
</div>
</div>
<div class="social-login">
<img class="logo" src="/images/favicon/favicon.ico" alt="" sizes="20px" >
<h3>SERVICE VOLGA</h3>
<div class="social-icons">
<a href="#" class="social-login__icon fab fa-instagram"></a>
<a href="#" class="social-login__icon fab fa-facebook"></a>
<a href="#" class="social-login__icon fab fa-twitter"></a>
</div>
</div>
</div>
<div class="screen__background">
<span class="screen__background__shape screen__background__shape4"></span>
<span class="screen__background__shape screen__background__shape3"></span>
<span class="screen__background__shape screen__background__shape3"></span>
<span class="screen__background__shape screen__background__shape2"></span>
<span class="screen__background__shape screen__background__shape1"></span>
</div>
<p class="login-footer"> © 2024 Ал Омаири Ахмед </p>
</div>
<p class="login-footer"> © 2024 Ал Омаири Ахмед </p>
</div>
</div>
</body>
<script src="js/auth.js"></script>
<script>
const version = document.getElementById('version');
version.innerText = serverEnv.version
</script>
</html>
</html>