SergeyRasubaev_PIbd-21_IP_R.../3 lab/index.html

56 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>