32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!DOCTYPE HTML>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head th:fragment="headerfiles">
|
|
<meta charset="UTF-8"/>
|
|
</head>
|
|
<body>
|
|
<div id="inviteModal" class="modal fade text-center">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<form id="invite-form" method="post" action="/users/invite">
|
|
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="label">Пригласить пользователя</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<input class="form-control" id="email" type="text"
|
|
placeholder="email" name="email"/>
|
|
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Закрыть</button>
|
|
<button type="submit" class="btn btn-primary">Пригласить</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |