mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-04 05:09:21 +02:00

- Updated Admin Panel to Bootstrap 4. - Code cleanup - Rewrote menu generation code - Added top 10 coins, top 10 premium points, last 10 logins to modules page. - Added full account list to Account editor - Added load outfits from XML to player editor and lists all enabled outfits in editor (will default to textbox if array of outfits do not exist) - Added tabs to account editor - account, characters,store history, bans(this is based off the bans.php page so will not work on TFS 0.2/1.0) - Updated datepickers to display the actual date rather than unix time. - Added last 10 posts to player editor
28 lines
1.3 KiB
Twig
28 lines
1.3 KiB
Twig
<div class="col-12 col-md-6">
|
|
<div class="card card-warning card-outline">
|
|
<form action="?p=dashboard&maintenance" method="post" class="form-horizontal">
|
|
<div class="card-header">
|
|
<h5 class="m-0">Website Status<span class="float-right">
|
|
<div class="custom-control custom-switch custom-switch-off-danger custom-switch-on-success">
|
|
<input type="checkbox" class="custom-control-input" name="status" id="status" value="true" {% if not is_closed %} checked{% endif %}>
|
|
<label class="custom-control-label" for="status"> {% if is_closed %}Closed{% else %}Open{% endif %}</label>
|
|
</div></span>
|
|
</h5>
|
|
</div>
|
|
<div class="card-body p-2">
|
|
<div class="col-sm-12">
|
|
<label for="message" class="col-form-label">Maintenance Message</label>
|
|
<textarea name="message" class="form-control" cols="40" rows="3" maxlength="255" placeholder="Enter ...">{{ closed_message }}</textarea>
|
|
<small>(only visible if closed)</small>
|
|
</div>
|
|
</div>
|
|
<div class="card-footer">
|
|
<button type="submit" class="btn btn-info"><i class="far fa-update"></i> Update</button>
|
|
<a href="?p=dashboard&clear_cache" onclick="return confirm('Are you sure?');" class="float-right">
|
|
<span class="btn btn-danger"><i class="fas fa-clear"></i>Clear cache</span>
|
|
</a>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|