Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
298 changes: 298 additions & 0 deletions loginform/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,298 @@
body {
margin: 0;

background-color: white;

font-family: 'Montserrat', sans-serif;
font-size: 18px;
line-height: 1;
color: #161616;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

}

*,
*::after,
*::before {
box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
margin: 0;
}

ul, ol {
margin: 0;
padding: 0;
list-style: none;
}

p {
margin: 0;
padding: 0;
}

.img {
display: block;
padding: 0;
list-style: none;
width: 100%;
}


body::-webkit-scrollbar {
width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
background: #FF7171; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
background-color: #FF9C9C; /* color of the scroll thumb */
border-radius: 20px; /* roundness of the scroll thumb */
border: white; /* creates padding around scroll thumb */
}

/************************************************************/

.container {
opacity: 1;
visibility: visible;
display: flex;
flex-direction: row;
max-height: 1080px;
max-width: 1920px;
height: 100vh;
overflow: hidden;
}
.right_side {
width: 50%;
background: url('../img/list.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
}

.right_side img {
width: 100%;
}

.left_side {
display: flex;
flex-direction: column;
width: 50%;
background: #FBFDFE;
}

.connection {
position: relative;
top: 17%;
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
flex: 1;
}

.connection h1 {
font-weight: 400;
font-size: 46px;
line-height: 56px;
color: #000000;

margin-bottom: 20px;
}

.next {
flex: none;
position: relative;
bottom: 40px;
right: 40px;
}

.next a {
bottom: -40px;
float: right;
}

.form {
display: flex;
flex-direction: column;
padding: 10px 0 20px 0;
}

.form input {
width: 400px;
height: 80px;

background: #FFFFFF;
border: 3px solid rgba(70, 82, 157, 0.4);
border-radius: 30px;

font-weight: 300;
font-size: 20px;
font-family: "Montserrat";

color: #000000;
opacity: 0.6;
text-indent: 20px;
text-align: left;
}

.inpt {
margin-bottom: 30px;
}

.error {
color: red;
font-size: 16px;
}

.reg_login {
margin-bottom: 7px;
}

.password {
margin-bottom: 25px;
}

.password_confirm {
margin-bottom: 7px;
}

.login_error {
color:red;
margin-bottom: 10px;
padding-left: 20px;
font-size: 16px;
}

.password_error {
color: red;
margin-bottom: 15px;
padding-left: 20px;
font-size: 16px;
}

.connection a {
margin-top: 20px;
font-weight: 400;
font-size: 19px;
line-height: 23px;
text-decoration-line: underline;
color: #46529D;
text-align: left;
}

.connection a:hover {
color: #46529D;
}

.connection a:visited {
color: #46529D;
}


@media only screen and (min-width: 992px) and (max-width:1424px) {
.connection h1 {
font-size: 36px;
}

}

@media only screen and (min-width: 767px) and (max-width:991px) {
.connection h1 {
font-size: 30px;
}

.form input {
width: 330px;
font-size: 19px;
}

}

@media only screen and (min-width: 480px) and (max-width:766px) {
.container {
width: 100%;
display: flex;
flex-direction: column;
}

.next {
flex: none;
}

.next a {
padding: 21px;
float: right;
}

.left_side {
width: 100%;
}

.right_side {
display: none;
}
}

@media only screen and (max-width: 480px) {
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}

.next {
flex: none;
}

.next a {
padding: 21px;
float: right;
}

.left_side {
width: 100%;
}

.right_side {
display: none;
}

.connection h1 {
font-size: 30px;
}

.form {
width: 90%;
}

.form input {
width: 100%;
font-size: 20px;
}

}

@keyframes preloader-rotate {
100% {
transform: rotate(360deg);
}
}

@keyframes preloader-bounce {

0%,
100% {
transform: scale(0);
}

50% {
transform: scale(1);
}
}
Binary file added loginform/img/btnArrow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added loginform/img/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added loginform/img/list.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions loginform/js/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// прелоудер при загрузке страницы
window.onload = function () {
document.body.classList.add('loaded_hiding');
window.setTimeout(function () {
document.body.classList.add('loaded');
document.body.classList.remove('loaded_hiding');
}, 500);
}
42 changes: 42 additions & 0 deletions loginform/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html class="wide wow-animation" lang="en">

<head>
<title>Login</title>
<meta name="format-detection" content="telephone=no">
<meta name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<!-- <link rel="icon" href="images/favicon.ico" type="image/x-icon"> -->

<link rel="stylesheet" type="text/css"
href="//fonts.googleapis.com/css?family=Montserrat:400,500,600,700%7CPoppins:400%7CTeko:300,400">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/main.js"></script>
</head>

<body>

<div class="container">
<div class="left_side">
<div class="connection">
<h1>Login</h1>
<p class="error">Wrong username or password entered</p>
<form class="form">
<input type="text" name="Login" class="inpt" placeholder="Login">
<input type="password" name="Password" placeholder="Password">
</form>
<a href="registration.html" tile="Don’t have an account? Create one!">Don’t have an
account? Create one!</a>
</div>
<div class="next">
<a href="registration.html" title="Next"><img src="img/btnArrow.png"></a>
</div>
</div>
<div class="right_side">
</div>
</div>
</body>

</html>
43 changes: 43 additions & 0 deletions loginform/registration.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html class="wide wow-animation" lang="en">

<head>
<title>Registration</title>
<meta name="format-detection" content="telephone=no">
<meta name="viewport"
content="width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<!-- <link rel="icon" href="images/favicon.ico" type="image/x-icon"> -->

<link rel="stylesheet" type="text/css"
href="//fonts.googleapis.com/css?family=Montserrat:400,500,600,700%7CPoppins:400%7CTeko:300,400">
<link rel="stylesheet" href="css/style.css">
<script type="text/javascript" src="js/main.js"></script>
</head>

<body>

<div class="container">
<div class="left_side">
<div class="connection">
<h1>Registration</h1>
<form class="form">
<input type="text" name="Login" placeholder="Login" class="reg_login">
<p class="login_error">login is already taken</p>
<input type="password" placeholder="Password" class="password">
<input type="password" placeholder="Confirm password" class="password_confirm">
<p class="password_error">Password do not coincide</p>
</form>
</div>
<div class="next">
<a href="index.html" title="Next"><img src="img/btnArrow.png"></a>
</div>
</div>
<div class="right_side">
</div>
</div>

</body>

</html>
Binary file added public/bebra.ico
Binary file not shown.
Loading