added new design login page
This commit is contained in:
parent
df2db8e49c
commit
82576a626b
|
@ -1,223 +1,248 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="theme-color" content="#000d04"/>
|
<title>Document</title>
|
||||||
<title>Finances - Login</title>
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<link href="https://fonts.googleapis.com/css2?family=Protest+Strike&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style>
|
<style>
|
||||||
|
body {
|
||||||
button {
|
font-family: 'Protest Strike', sans-serif;
|
||||||
background-color: white;
|
background: #000000;
|
||||||
|
color: white;
|
||||||
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover {
|
.horizontal-splitter {
|
||||||
background-color: rgb(197, 197, 197);
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
height: 20px;
|
||||||
|
justify-content: center;
|
||||||
|
align-self: center;
|
||||||
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:active {
|
.side-line {
|
||||||
background-color: #169D00;
|
background-color: rgb(44, 44, 44);
|
||||||
color: black;
|
align-self: center;
|
||||||
}
|
flex: 1;
|
||||||
|
|
||||||
hr {
|
|
||||||
background-color: #A8A8A8;
|
|
||||||
margin: 1.3em 0em;
|
|
||||||
height: 1px;
|
height: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
.or-text {
|
||||||
background: #000d04;
|
flex-basis: 0px;
|
||||||
background: linear-gradient(133deg, rgba(0,13,4,1) 0%, rgba(3,38,0,1) 81%, rgba(0,59,18,1) 100%) no-repeat;
|
margin-left: 5px;
|
||||||
color: #EDEDED;
|
margin-right: 5px;
|
||||||
font-family: 'Montserrat';
|
color: rgb(167, 167, 167);
|
||||||
background-attachment: fixed; /*edit*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
span {
|
.main-container {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.vertical-break {
|
.logo-container {
|
||||||
width: 1px;
|
display: flex;
|
||||||
min-width: none;
|
flex: 1.5;
|
||||||
height: 600px;
|
|
||||||
background-color: #424242;
|
|
||||||
margin-top: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions {
|
|
||||||
padding: 50px;
|
|
||||||
vertical-align: top;
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions h1 {
|
|
||||||
font-weight: 400;
|
|
||||||
font-size: 2.1em;
|
|
||||||
width: 6em;
|
|
||||||
text-align: left;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions p {
|
|
||||||
font-weight: 200;
|
|
||||||
text-align: left;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions input {
|
|
||||||
background-color: #09190B;
|
|
||||||
color: #EDEDED;
|
|
||||||
border: #052400;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: 2px;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-weight: 100;
|
|
||||||
text-align: left;
|
|
||||||
font-size: 1em;
|
|
||||||
width: 100%;
|
|
||||||
outline: none;
|
|
||||||
caret-color: white;
|
|
||||||
margin: 0px;
|
|
||||||
padding: 6px;
|
|
||||||
|
|
||||||
box-sizing:border-box;
|
|
||||||
-moz-box-sizing:border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions button {
|
|
||||||
width: 100%;
|
|
||||||
border: none;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-size: 1em;
|
|
||||||
padding: 0.4em;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-container {
|
|
||||||
margin-bottom: 1em;
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-container-region {
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.green-bar {
|
|
||||||
background-color: #169D00;
|
|
||||||
height: 0.2em;
|
|
||||||
width: 50%;
|
|
||||||
margin-bottom: 3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions .forgot-password {
|
|
||||||
font-size: 0.6em;
|
|
||||||
color:#169D00;
|
|
||||||
font-weight: 300;
|
|
||||||
margin: 30px 0em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.signup-section button {
|
|
||||||
margin-top: 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 1100px) {
|
|
||||||
.signup-section {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.control-regions h1 {
|
|
||||||
font-size: 1.6em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.only-mobile {
|
|
||||||
display: inline;
|
|
||||||
}
|
|
||||||
|
|
||||||
.green-bar {
|
|
||||||
margin-bottom: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.vertical-break {
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.login-section {
|
.login-section {
|
||||||
display: block;
|
display: block;
|
||||||
margin-left: auto;
|
flex: 1;
|
||||||
margin-right: auto;
|
margin: 45vh 150px 0px 0px;
|
||||||
padding-top: 1em;
|
transform: translate(0px, -50%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-button {
|
||||||
|
width: 100%;
|
||||||
|
font-size: larger;
|
||||||
|
padding-top: 10px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
border: none;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 10000px;
|
||||||
|
margin-top: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
font-weight: bolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-button:hover {
|
||||||
|
background-color: #dedede;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-text {
|
||||||
|
width: 100%;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.slogan {
|
||||||
|
font-family: 'Protest Strike', sans-serif;
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.company-name {
|
||||||
|
font-family: 'Protest Strike', sans-serif;
|
||||||
|
font-size: 100px;
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog {
|
||||||
|
position: absolute;
|
||||||
|
border: none;
|
||||||
|
left: 50%;
|
||||||
|
top: 50%;
|
||||||
|
margin: 0px;
|
||||||
|
transform: translate(-50%,-50%);
|
||||||
|
border-radius: 20px;
|
||||||
|
width: 500px;
|
||||||
|
height: 500px;
|
||||||
|
background: black;
|
||||||
|
padding: 0px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog::backdrop {
|
||||||
|
background: rgba(255, 255, 255, 0.388);
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog input {
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin: 50px;
|
||||||
|
width: calc(100% - 100px);
|
||||||
|
border: none;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 100000px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog {
|
||||||
|
background: white;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog::backdrop {
|
||||||
|
background: rgba(0, 0, 0, 0.388);
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog input {
|
||||||
|
border: black 2px solid;
|
||||||
|
}
|
||||||
|
.input-button {
|
||||||
|
background: black;
|
||||||
|
color:white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-button:hover {
|
||||||
|
background-color: rgb(44, 44, 44);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1100px) {
|
.signup-button {
|
||||||
.only-mobile {
|
background-color: #00bfff;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signup-button:hover {
|
||||||
|
background-color: #15a3d2;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1400px) and (min-width: 800px) {
|
||||||
|
|
||||||
|
.logo-container {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.control-regions {
|
.login-section {
|
||||||
width: 30%;
|
margin: 30vh 10vw 0px 10vw;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 800px) {
|
||||||
|
.company-name {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-section {
|
||||||
|
margin: 30vh 10vw 0px 10vw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div>
|
<div class="main-container">
|
||||||
<span class="login-section control-regions">
|
<div class="logo-container">
|
||||||
<h1>Login To Finance</h1>
|
<span></span>
|
||||||
<div class="green-bar"></div>
|
|
||||||
<div class="input-container-region">
|
|
||||||
<div class="input-container">
|
|
||||||
<p>Email</p>
|
|
||||||
<input type="text">
|
|
||||||
</div>
|
</div>
|
||||||
<div class="input-container">
|
|
||||||
<p>Password</p>
|
|
||||||
<input type="text">
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p class="forgot-password">Forgot password?</p>
|
|
||||||
<button>
|
|
||||||
Login
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<div class="only-mobile">
|
<div class="login-section">
|
||||||
<hr>
|
<span>
|
||||||
|
<h1 class="company-name">
|
||||||
|
DinoSavings
|
||||||
|
</h1>
|
||||||
|
|
||||||
<button>
|
<h2 class="slogan">
|
||||||
Sign Up
|
Sort Your Finances.
|
||||||
</button>
|
</h2>
|
||||||
</div>
|
|
||||||
</span>
|
</span>
|
||||||
|
<input id="show-login-dialog" class="input-button signup-button" type="button" value="Create account">
|
||||||
|
<div class="horizontal-splitter">
|
||||||
|
<div class="side-line">
|
||||||
|
|
||||||
<span class="vertical-break"></span>
|
|
||||||
|
|
||||||
<span class="signup-section control-regions">
|
|
||||||
<h1>Sign Up To Finance</h1>
|
|
||||||
<div class="green-bar"></div>
|
|
||||||
|
|
||||||
<div class="input-container-region">
|
|
||||||
<div class="input-container">
|
|
||||||
<p>Email</p>
|
|
||||||
<input type="text">
|
|
||||||
</div>
|
</div>
|
||||||
<div class="input-container">
|
<div class="or-text">
|
||||||
<p>Password</p>
|
<span>or</span>
|
||||||
<input type="text">
|
</div>
|
||||||
|
<div class="side-line">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<input class="input-button" type="button" value="Login">
|
||||||
<button>
|
|
||||||
Sign Up
|
|
||||||
</button>
|
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<dialog id="signup-dialog">
|
||||||
|
<input type="text" placeholder="Enter your Email">
|
||||||
|
</dialog>
|
||||||
|
|
||||||
|
<dialog id="login-dialog">
|
||||||
|
<input type="text" placeholder="Enter your Username or Email">
|
||||||
|
</dialog>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
<script>
|
||||||
|
function openCheck(dialog) {
|
||||||
|
if (dialog.open) {
|
||||||
|
console.log("Dialog open");
|
||||||
|
} else {
|
||||||
|
console.log("Dialog closed");
|
||||||
|
}
|
||||||
|
|
||||||
|
return dialog.open;
|
||||||
|
}
|
||||||
|
|
||||||
|
document.addEventListener('DOMContentLoaded', function () {
|
||||||
|
var loginDialog = document.getElementById('show-login-dialog');
|
||||||
|
|
||||||
|
loginDialog.addEventListener('click', function () {
|
||||||
|
var currentModal = document.getElementById('login-dialog');
|
||||||
|
|
||||||
|
currentModal.close();
|
||||||
|
currentModal.showModal();
|
||||||
|
|
||||||
|
openCheck(currentModal);
|
||||||
|
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
|
@ -0,0 +1,223 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="theme-color" content="#000d04"/>
|
||||||
|
<title>Finances - Login</title>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
|
<style>
|
||||||
|
|
||||||
|
button {
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
button:hover {
|
||||||
|
background-color: rgb(197, 197, 197);
|
||||||
|
}
|
||||||
|
|
||||||
|
button:active {
|
||||||
|
background-color: #169D00;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr {
|
||||||
|
background-color: #A8A8A8;
|
||||||
|
margin: 1.3em 0em;
|
||||||
|
height: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: #000d04;
|
||||||
|
background: linear-gradient(133deg, rgba(0,13,4,1) 0%, rgba(3,38,0,1) 81%, rgba(0,59,18,1) 100%) no-repeat;
|
||||||
|
color: #EDEDED;
|
||||||
|
font-family: 'Montserrat';
|
||||||
|
background-attachment: fixed; /*edit*/
|
||||||
|
}
|
||||||
|
|
||||||
|
span {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vertical-break {
|
||||||
|
width: 1px;
|
||||||
|
min-width: none;
|
||||||
|
height: 600px;
|
||||||
|
background-color: #424242;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions {
|
||||||
|
padding: 50px;
|
||||||
|
vertical-align: top;
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions h1 {
|
||||||
|
font-weight: 400;
|
||||||
|
font-size: 2.1em;
|
||||||
|
width: 6em;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions p {
|
||||||
|
font-weight: 200;
|
||||||
|
text-align: left;
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions input {
|
||||||
|
background-color: #09190B;
|
||||||
|
color: #EDEDED;
|
||||||
|
border: #052400;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 2px;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-weight: 100;
|
||||||
|
text-align: left;
|
||||||
|
font-size: 1em;
|
||||||
|
width: 100%;
|
||||||
|
outline: none;
|
||||||
|
caret-color: white;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 6px;
|
||||||
|
|
||||||
|
box-sizing:border-box;
|
||||||
|
-moz-box-sizing:border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions button {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px;
|
||||||
|
font-size: 1em;
|
||||||
|
padding: 0.4em;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-container {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.input-container-region {
|
||||||
|
margin-bottom: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.green-bar {
|
||||||
|
background-color: #169D00;
|
||||||
|
height: 0.2em;
|
||||||
|
width: 50%;
|
||||||
|
margin-bottom: 3em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions .forgot-password {
|
||||||
|
font-size: 0.6em;
|
||||||
|
color:#169D00;
|
||||||
|
font-weight: 300;
|
||||||
|
margin: 30px 0em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signup-section button {
|
||||||
|
margin-top: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1100px) {
|
||||||
|
.signup-section {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions h1 {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.only-mobile {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.green-bar {
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vertical-break {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-section {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
padding-top: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1100px) {
|
||||||
|
.only-mobile {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.control-regions {
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
||||||
|
<span class="login-section control-regions">
|
||||||
|
<h1>Login To Finance</h1>
|
||||||
|
<div class="green-bar"></div>
|
||||||
|
<div class="input-container-region">
|
||||||
|
<div class="input-container">
|
||||||
|
<p>Email</p>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
<div class="input-container">
|
||||||
|
<p>Password</p>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p class="forgot-password">Forgot password?</p>
|
||||||
|
<button>
|
||||||
|
Login
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<div class="only-mobile">
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<button>
|
||||||
|
Sign Up
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<span class="vertical-break"></span>
|
||||||
|
|
||||||
|
<span class="signup-section control-regions">
|
||||||
|
<h1>Sign Up To Finance</h1>
|
||||||
|
<div class="green-bar"></div>
|
||||||
|
|
||||||
|
<div class="input-container-region">
|
||||||
|
<div class="input-container">
|
||||||
|
<p>Email</p>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
<div class="input-container">
|
||||||
|
<p>Password</p>
|
||||||
|
<input type="text">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button>
|
||||||
|
Sign Up
|
||||||
|
</button>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue