Skip to content

Commit

Permalink
fix alignment on setup page, change invite generator column widths
Browse files Browse the repository at this point in the history
  • Loading branch information
hrfee committed Aug 30, 2020
1 parent a5a721b commit c6f8452
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions data/static/setup.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
document.getElementById('page-1').scrollIntoView({
behavior: 'auto',
block: 'center',
inline: 'center' });

function checkAuthRadio() {
if (document.getElementById('manualAuthRadio').checked) {
document.getElementById('adminOnlyArea').style.display = 'none';
Expand Down
4 changes: 2 additions & 2 deletions data/templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ <h1>
<div class="card-body">
<form action="#" method="POST" id="inviteForm" class="container">
<div class="row align-items-start">
<div class="col">
<div class="col-sm">
<div class="form-group">
<label for="days">Days</label>
<select class="form-control form-select" id="days" name="days">
Expand All @@ -296,7 +296,7 @@ <h1>
</select>
</div>
</div>
<div class="col-md-auto">
<div class="col">
<div class="form-group">
<label for="multiUseCount">
Multiple uses
Expand Down

0 comments on commit c6f8452

Please sign in to comment.