39 lines
2.4 KiB
HTML
39 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<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&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="./css/style-01.css">
|
|
<link rel="icon" type="image/png" href="./img/merakom-sign.png">
|
|
<meta name="description" content="Регистрация нового пользователя">
|
|
<meta name="keywords" content="">
|
|
<title>Регистрация</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page-centred">
|
|
<div class="window sign-join">
|
|
|
|
<div class="form-header">
|
|
<div class="form-header-tab"><a class="tab-link active" href="#">ВХОД</a></div>
|
|
<div class="user-icon">
|
|
<img src="img/user-icon.svg">
|
|
</div>
|
|
<div class="form-header-tab active"><a class="tab-link active" href="#">РЕГИСТРАЦИЯ</a></div>
|
|
</div>
|
|
|
|
<form class="form" action="/" method="">
|
|
<input class="input" type="email" name="join-email" placeholder="e-mail" title="Укажите ваш почтовый ящик на корпоративном домене" pattern="" required>
|
|
<input class="input" type="password" name="join-password" placeholder="password" title="Введите пароль" pattern="" required>
|
|
<input class="input" type="password" name="join-password" placeholder="repeat password" title="Введите пароль еще раз" pattern="" required>
|
|
<button class="btn" type="submit">РЕГИСТРАЦИЯ</button>
|
|
</form>
|
|
<p class="form-description">По вопросам предоставления доступа обращайтесь к руководителю подразделения.</p>
|
|
<a class="form-description" href="#">Сменить пароль</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |