Skip to content

Commit

Permalink
Updates layouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stardog committed Mar 16, 2022
1 parent ee33097 commit d558a48
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion templates/AfterQuickPunch.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div class="row d-flex justify-content-center">
<div class="col-md-8 col-sm-10">
<div class="card">
<div class="card-header">
<div class="card-header bg-primary text-white">
<h3 class="m-0">
Thank you <?=$preferredName?></h3>
</div>
Expand Down
6 changes: 3 additions & 3 deletions templates/QuickPunchIn.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<div class="row d-flex justify-content-center">
<div class="col-md-8 col-sm-10">
<div class="card">
<div class="card-header">
<div class="card-header bg-success text-white">
<h3 class="m-0">
Hello <?=$preferredName?></h3>
Welcome <?=$preferredName?></h3>
</div>
<div class="card-body">
<form method="post" action="./volunteer/User/Punch/quick">
<input type="hidden" name="hash" value="<?=$hash?>" />
<input type="hidden" name="sponsorId" value="<?=$sponsorId?>" />
<button class="btn btn-primary btn-block btn-lg" type="submit">Clock in to
<button class="btn btn-primary btn-block btn-lg" type="submit"><i class="fas fa-clock"></i> Clock in to
<?=$sponsorName?></button>
</form>
</div>
Expand Down
6 changes: 3 additions & 3 deletions templates/QuickPunchInReasons.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<div class="row d-flex justify-content-center">
<div class="col-md-8 col-sm-10">
<div class="card">
<div class="card-header">
<div class="card border-success">
<div class="card-header bg-success text-white">
<h3 class="m-0">
Hello <?=$preferredName?></h3>
Welcome <?=$preferredName?></h3>
</div>
<div class="card-body">
<p class="card-text lead">Why are you visiting <?=$sponsorName?>?</p>
Expand Down
9 changes: 5 additions & 4 deletions templates/QuickPunchOut.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<div class="row d-flex justify-content-center">
<div class="col-md-8 col-sm-10">
<div class="card">
<div class="card-header">
<div class="card border-primary">
<div class="card-header bg-primary text-white">
<h3 class="m-0">
Hello <?=$preferredName?></h3>
Welcome back, <?=$preferredName?>!</h3>
</div>
<div class="card-body">
<form method="post" action="./volunteer/User/Punch/quick">
<input type="hidden" name="punchId" value="<?=$punchId?>" />
<input type="hidden" name="hash" value="<?=$hash?>" />
<button class="btn btn-primary btn-block btn-lg" type="submit">Ready to clock out of
<button class="btn btn-success btn-block btn-lg" type="submit"><i class="fas fa-clock"></i>
Ready to clock out of
<?=$sponsorName?>?</button>
</form>
</div>
Expand Down

0 comments on commit d558a48

Please sign in to comment.