admin page

This commit is contained in:
Chris Smith
2019-03-15 21:07:40 -05:00
parent 0b5987a858
commit 332cca7d93
2 changed files with 6 additions and 1 deletions

View File

@@ -13,3 +13,5 @@ POSTMARK_GUEST_TEMPLATE="identifier_for_template"
POSTMARK_FROM="sender@email.com" POSTMARK_FROM="sender@email.com"
STRIPE_API_SECRET_KEY="sk" STRIPE_API_SECRET_KEY="sk"
STRIPE_API_PUBLIC_KEY="pk" STRIPE_API_PUBLIC_KEY="pk"
ADMIN_USER="admin"
ADMIN_PASS="changethis"

View File

@@ -1,6 +1,8 @@
<h1>Admin Login</h1> <h1>Admin Login</h1>
<div class="row"> <div class="row">
<div class="col-md-12 order-md-1">
<form method="POST"> <form method="POST">
<div class="input-group form-group"> <div class="input-group form-group">
<input type="text" name="username" class="form-control" placeholder="username"> <input type="text" name="username" class="form-control" placeholder="username">
@@ -15,3 +17,4 @@
<br/> <br/>
<br/> <br/>
</div> </div>
</div>