forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings_notifications.html
134 lines (133 loc) · 8.05 KB
/
settings_notifications.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<main>
<header class="page-header page-header-compact page-header-light border-bottom bg-white mb-4">
<div class="container-xl px-4">
<div class="page-header-content">
<div class="row align-items-center justify-content-between pt-3">
<div class="col-auto mb-3">
<h1 class="page-header-title">
<div class="page-header-icon"><i data-feather="user"></i></div>
Notification Settings - UNDER DEVELOPMENT. PREVIEW ONLY
</h1>
</div>
</div>
</div>
</div>
</header>
<!-- Main page content-->
<div class="container-xl px-4 mt-4">
<!-- Account page navigation-->
<nav class="nav nav-borders">
<a class="nav-link" href="index.html?page=settings">Profile</a>
<a class="nav-link" href="index.html?page=settings_tenants">Tenants</a>
<a class="nav-link" href="index.html?page=settings_security">Security</a>
<a class="nav-link active ms-0" href="index.html?page=settings_notifications">Notifications</a>
</nav>
<hr class="mt-0 mb-4" />
<div class="row">
<div class="col-lg-8">
<!-- Email notifications preferences card-->
<div class="card card-header-actions mb-4">
<div class="card-header">
Email Notifications
<div class="form-check form-switch">
<input class="form-check-input" id="flexSwitchCheckChecked" type="checkbox" disabled />
<label class="form-check-label" for="flexSwitchCheckChecked"></label>
</div>
</div>
<div class="card-body">
<form>
<!-- Form Group (default email)-->
<div class="mb-3">
<label class="small mb-1" for="inputNotificationEmail">Notification
email</label>
<input class="form-control" id="inputNotificationEmail" type="email"
value="[email protected]" disabled />
</div>
<!-- Form Group (email updates checkboxes)-->
<div class="mb-0">
<label class="small mb-2">Choose which types of email updates you receive</label>
<div class="form-check mb-2">
<input class="form-check-input" id="checkAccountChanges" type="checkbox" disabled />
<label class="form-check-label" for="checkAccountChanges">New Accounts</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkAccountGroups" type="checkbox" disabled />
<label class="form-check-label" for="checkAccountGroups">New Apps</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkProductUpdates" type="checkbox" disabled />
<label class="form-check-label" for="checkProductUpdates">New Policies</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkProductNew" type="checkbox" disabled />
<label class="form-check-label" for="checkProductNew">Deleted Items</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkPromotional" type="checkbox" disabled />
<label class="form-check-label" for="checkPromotional">Edited items</label>
</div>
<div class="form-check">
<input class="form-check-input" id="checkSecurity" type="checkbox" disabled />
<label class="form-check-label" for="checkSecurity">System Notifications</label>
</div>
</div>
</form>
</div>
</div>
<!-- SMS push notifications card-->
<div class="card card-header-actions mb-4">
<div class="card-header">
Webhook Notifications
<div class="form-check form-switch">
<input class="form-check-input" id="smsToggleSwitch" type="checkbox" disabled />
<label class="form-check-label" for="smsToggleSwitch"></label>
</div>
</div>
<div class="card-body">
<form>
<!-- Form Group (default SMS number)-->
<div class="mb-3">
<label class="small mb-1" for="inputNotificationSms">Webhook URL</label>
<input class="form-control" id="inputNotificationSms"
value=" https://yourwebhookorsomething" disabled />
</div>
<!-- Form Group (SMS updates checkboxes)-->
<div class="mb-0">
<label class="small mb-2">Choose which types of push notifications you receive</label>
<div class="form-check mb-2">
<input class="form-check-input" id="checkSmsComment" type="checkbox" disabled />
<label class="form-check-label" for="checkSmsComment">Someone makes a major
change</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkSmsShare" type="checkbox" disabled />
<label class="form-check-label" for="checkSmsShare">Someone creates accounts or
groups</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkSmsFollow" type="checkbox" disabled />
<label class="form-check-label" for="checkSmsFollow">Someone adds excluded
tenants</label>
</div>
<div class="form-check mb-2">
<input class="form-check-input" id="checkSmsGroup" type="checkbox" disabled />
<label class="form-check-label" for="checkSmsGroup">When a standard could not be
applied</label>
</div>
<div class="form-check">
<input class="form-check-input" id="checkSmsPrivateMessage" type="checkbox"
disabled />
<label class="form-check-label" for="checkSmsPrivateMessage">When we rollover
logs</label>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-lg-4">
<!-- Notifications preferences card-->
</div>
</div>
</div>
</main>