-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangeStatus.html
32 lines (31 loc) · 919 Bytes
/
changeStatus.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="dist/css/main.min.css" rel="stylesheet" />
<title>Change Status</title>
</head>
<body>
<div class="popup">
<div class="popup__content">
<h3>Update Status</h3>
<div class="popup__close">×</div>
<form class="popup__form">
<select class="form__input react-select" id="inviteMembers"></select>
<div class="popup__form--buttons">
<button class="btn btn-cancel btn-form popup__form--cancel">
Cancel
</button>
<button
type="submit"
class="btn btn-green btn-form popup__form--create"
>
Update
</button>
</div>
</form>
</div>
</div>
</body>
</html>