56 lines
2.1 KiB
HTML
56 lines
2.1 KiB
HTML
|
<!doctype html>
|
|||
|
<html lang="ru">
|
|||
|
<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>
|
|||
|
</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 ="email" class = "control-label">Введите почту</label>
|
|||
|
<input type = "email" class = "form-control" id = "email" placeholder ="Введите почту">
|
|||
|
</div>
|
|||
|
<div class = "form-group col-md-3 text-center">
|
|||
|
|
|||
|
<label for ="pasword" control = "control-label">Введите пароль</label>
|
|||
|
|
|||
|
|
|||
|
<input type = "pasword" class = "form-control" id = "pasword" placeholder ="Введите пароль">
|
|||
|
|
|||
|
</div>
|
|||
|
<div class = "form-group col-md-3 text-center">
|
|||
|
<label for ="paswordConfirm" control = "control-label">Подтвердите пароль</label>
|
|||
|
<input type = "paswordConfirm" class = "form-control" id = "paswordConfirm" placeholder ="Подтвердите пароль">
|
|||
|
<a href ="login.html">У вас уже есть профиль?</a>
|
|||
|
<p></p>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
</div>
|
|||
|
|
|||
|
</div>
|
|||
|
</form>
|
|||
|
<div class = "form-group col-md-3 text-center">
|
|||
|
<form action="home.html">
|
|||
|
<input type = "submit" class = "btn btn-primary" value = "Зарегистрироваться">
|
|||
|
</form>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</main>
|
|||
|
</body>
|
|||
|
</html>
|