38 lines
2.0 KiB
HTML
38 lines
2.0 KiB
HTML
<div id="serverSettingsModal" class="modal fade" data-bs-backdrop="static" tabindex="-1">
|
|
<div class="modal-dialog modal-dialog-centered">
|
|
<div class="modal-content rounded-1">
|
|
<form id="serverSettingsForm" class="mb-0" novalidate>
|
|
<div class="modal-header">
|
|
<h5 class="modal-title ms-2">
|
|
<span class="resolve-to-server-name"></span> Settings
|
|
</h5>
|
|
</div>
|
|
<div class="modal-body p-4">
|
|
<input type="hidden" id="guildSettingsId" name="guildSettingsId">
|
|
<input type="hidden" id="guildSettingsGuildId" name="guildSettingsGuildId">
|
|
<div class="mb-4">
|
|
<div class="colour-input"
|
|
data-id="guildSettingsDefaultEmbedColour"
|
|
data-label="Default Embed Colour"
|
|
data-helptext="Default colour of each embed in Discord."
|
|
data-defaultcolour="#3498db">
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<div class="form-switch ps-0">
|
|
<label for="guildSettingsActive" class="form-check-label mb-2">Server Active?</label>
|
|
<br>
|
|
<input type="checkbox" name="guildSettingsActive" id="guildSettingsActive" class="form-check-input ms-0 mt-0">
|
|
<br>
|
|
<div class="form-text">Is this server active?</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer px-4">
|
|
<button type="submit" class="btn btn-primary rounded-1 ms-3 me-0">Save Changes</button>
|
|
<button type="button" class="btn btn-secondary rounded-1 ms-3 me-0" data-bs-dismiss="modal">Cancel</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div> |