HM-78 Добавил страницу логина (#39)

This commit is contained in:
mrPadre
2020-07-30 23:55:09 +03:00
committed by GitHub
parent cf045379d8
commit 281ec56288
4 changed files with 110 additions and 0 deletions

View File

@ -79,6 +79,33 @@
</div>
</template>
<!-- Шаблон страницы логина-->
<template id="login-page">
<div class="Login__page">
<div class="Login__page-container btn-prymary">
<div class="Login__logo-box"></div>
<h3 class="Login__title">Storage service v0.01</h3>
<form class="Login__form">
<div class="form-group Login__input">
<label for="login btn-primary">Логин пользователя:</label>
<input type="text" class="form-control" id="login" aria-describedby="loginError">
<small id="loginError" class="form-text text-muted"></small>
</div>
<div class="form-group Login__input">
<label for="password">Пароль пользователя:</label>
<input type="password" class="form-control" id="password" aria-describedby="passwordError">
<small id="passwordError" class="form-text text-muted"></small>
</div>
<div class="form-group form-check Login__check">
<input type="checkbox" class="form-check-input" id="check">
<label class="form-check-label" for="check">Оставаться в системе</label>
</div>
<button type="submit" class="btn btn-primary Login__submit">Войти</button>
</form>
</div>
</div>
</template>
<!-- Шаблон контейнера страниц-->
<template id="page-container">
<div class="PageContainer"></div>