Напишем форму регистрации.
index.html
<a href="#" class="nav-link" data-toggle="modal" data-target="#exampleModal">Login</a>
<!-- Модальное окно -->
<!-- Атрибут aria-describedby, который помогает пользователям с ограниченными возможностями ввести свое имя в правильном формате. -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" area-labelledby="exampleModal" aria-hidden="true">
<div class="modal-dialog" role="document"> <!-- добавление класса modal-lg делает окно большим, а modal-sm - маленьким -->
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Авторизация</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="ture">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<form action="">
<div class="form-group">
<label for="exampleInput">E-mail</label>
<input type="email" class="form-control form-control-lg" id="exampleInput" aria-describedby="emailHelp" placeholder="E-mail" required>
<small id="emailHelp" class="form-text text-muted">Введите ваш E-mail</small>
</div>
<div class="form-group">
<label for="exampleInputPass">Password</label>
<input type="password" class="form-control form-control-lg" id="exampleInputPass" placeholder="Пароль" required>
<small id="passHelp" class="form-text text-muted">Введите ваш пароль</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Запомнить пароль
</label>
</div>
</form>
<button type="submit" class="btn btn-primary">Отправить</button>
</div>
</div>
</div>
</div>
</div>
index.html
<a href="#" class="nav-link" data-toggle="modal" data-target="#exampleModal">Login</a>
<!-- Модальное окно -->
<!-- Атрибут aria-describedby, который помогает пользователям с ограниченными возможностями ввести свое имя в правильном формате. -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" area-labelledby="exampleModal" aria-hidden="true">
<div class="modal-dialog" role="document"> <!-- добавление класса modal-lg делает окно большим, а modal-sm - маленьким -->
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Авторизация</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="ture">×</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<form action="">
<div class="form-group">
<label for="exampleInput">E-mail</label>
<input type="email" class="form-control form-control-lg" id="exampleInput" aria-describedby="emailHelp" placeholder="E-mail" required>
<small id="emailHelp" class="form-text text-muted">Введите ваш E-mail</small>
</div>
<div class="form-group">
<label for="exampleInputPass">Password</label>
<input type="password" class="form-control form-control-lg" id="exampleInputPass" placeholder="Пароль" required>
<small id="passHelp" class="form-text text-muted">Введите ваш пароль</small>
</div>
<div class="form-check">
<label class="form-check-label">
<input type="checkbox" class="form-check-input">
Запомнить пароль
</label>
</div>
</form>
<button type="submit" class="btn btn-primary">Отправить</button>
</div>
</div>
</div>
</div>
</div>
Комментариев нет:
Отправить комментарий