-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Give a better popup when whitelisting
- Loading branch information
Showing
2 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div class="modal fade" tabindex="-1"> | ||
<div class="modal-dialog"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h4 class="modal-title js-modal-title">Please enter a whitelist reason</h4> | ||
</div> | ||
<div class="modal-body js-modal-body"> | ||
<p> | ||
You can use this to request that someone is whitelisted.</p> | ||
<p> | ||
For example, if you have a member who | ||
is enthusiastic and joins many groups, then they might show up as a possible spammer - this way | ||
people will know that they aren't. | ||
</p> | ||
<p>Similarly, volunteers who might need to join many groups are often whitelisted.</p> | ||
<p>This reason will be visible to other moderators, so please make sure it's helpful.</p> | ||
<input type="text" class="topspace form-control js-reason" placeholder="Enter a reason" /> | ||
</div> | ||
<div class="modal-footer"> | ||
<button type="button" class="btn btn-success js-confirm">Confirm</button> | ||
<button type="button" class="btn btn-error js-cancel">Cancel</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |