41 lines
1.5 KiB
HTML
41 lines
1.5 KiB
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||
|
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
||
|
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
||
|
<link rel="stylesheet" href="./style.css">
|
||
|
<title>Логин</title>
|
||
|
<style>
|
||
|
</style>
|
||
|
</head>
|
||
|
<body style = "background:#CDECDE">
|
||
|
<main>
|
||
|
<div class ="container >
|
||
|
<form role = "form" class = "form-horizontal">
|
||
|
<div class = "form-group col-md-3 text-center">
|
||
|
<h3>Логин</h3>
|
||
|
<label for ="name" class = "control-label center">Введите никнейм или почту</label>
|
||
|
<input type = "name" class = "form-control" id = "name" placeholder ="Введите никнейм или почту">
|
||
|
</div>
|
||
|
<div class = "form-group col-md-3 text-center">
|
||
|
<label for ="password" class = "control-label">Введите пароль</label>
|
||
|
<input type = "password" class = "form-control" id = "password" placeholder ="Введите пароль">
|
||
|
</div>
|
||
|
<div class = "form-group col-md-3 text-center">
|
||
|
<a href ="index.html">Нет профиля? Зарегистрироваться</a>
|
||
|
<p></p>
|
||
|
<div>
|
||
|
<form action="home.html">
|
||
|
<input type = "submit" class = "btn btn-primary" value = "Войти">
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|