cleanup
This commit is contained in:
parent
afb09851f4
commit
c093d69c80
1
src/backend-libs/.htaccess
Normal file
1
src/backend-libs/.htaccess
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Deny from all
|
Binary file not shown.
Before Width: | Height: | Size: 3.4 KiB |
|
@ -88,14 +88,14 @@ if (isset($_GET['username']) && isset($_GET['domain'])) {
|
||||||
document.getElementById('email-' + id + '-html').style.display = 'block';
|
document.getElementById('email-' + id + '-html').style.display = 'block';
|
||||||
document.getElementById('email-' + id + '-plain').style.display = 'none';
|
document.getElementById('email-' + id + '-plain').style.display = 'none';
|
||||||
document.getElementById('show-html-button-' + id).style.display = 'none';
|
document.getElementById('show-html-button-' + id).style.display = 'none';
|
||||||
document.getElementById('show-plain-button-' + id).style.display = 'block';
|
document.getElementById('show-plain-button-' + id).style.display = 'inline-block';
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function showPlain(id) {
|
function showPlain(id) {
|
||||||
document.getElementById('email-' + id + '-html').style.display = 'none';
|
document.getElementById('email-' + id + '-html').style.display = 'none';
|
||||||
document.getElementById('email-' + id + '-plain').style.display = 'block';
|
document.getElementById('email-' + id + '-plain').style.display = 'block';
|
||||||
document.getElementById('show-html-button-' + id).style.display = 'block';
|
document.getElementById('show-html-button-' + id).style.display = 'inline-block';
|
||||||
document.getElementById('show-plain-button-' + id).style.display = 'none';
|
document.getElementById('show-plain-button-' + id).style.display = 'none';
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -129,11 +129,6 @@ if (isset($_GET['username']) && isset($_GET['domain'])) {
|
||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-sm-1">
|
|
||||||
<button type="submit" class="btn" style="background-color:transparent">
|
|
||||||
<img src="if_sync-01_186384.png" width="32" height="32" alt="submit"/>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
<div class="col-sm-3 random-column">
|
<div class="col-sm-3 random-column">
|
||||||
<span>or </span>
|
<span>or </span>
|
||||||
<a role="button" href="?random=true" class="btn btn-outline-primary">generate random
|
<a role="button" href="?random=true" class="btn btn-outline-primary">generate random
|
||||||
|
@ -188,7 +183,7 @@ if (isset($_GET['username']) && isset($_GET['domain'])) {
|
||||||
<form class="form-inline float-xs-right">
|
<form class="form-inline float-xs-right">
|
||||||
|
|
||||||
<button type="button" class="btn btn-outline-info btn-sm"
|
<button type="button" class="btn btn-outline-info btn-sm"
|
||||||
style="display: block"
|
style="display: inline-block"
|
||||||
id="show-html-button-<?php echo filter_var($email->id, FILTER_VALIDATE_INT); ?>"
|
id="show-html-button-<?php echo filter_var($email->id, FILTER_VALIDATE_INT); ?>"
|
||||||
onclick="showHtml(<?php echo filter_var($email->id, FILTER_VALIDATE_INT); ?>)">
|
onclick="showHtml(<?php echo filter_var($email->id, FILTER_VALIDATE_INT); ?>)">
|
||||||
show html
|
show html
|
||||||
|
|
Loading…
Reference in New Issue
Block a user