Make the pin entry screen not look terrible

Change the color of the message to be readable, and some other
positioning tweaks.
This commit is contained in:
Zorchenhimer 2019-04-13 14:21:53 -04:00
parent 332dfdc9cf
commit 0c3850d2f7
3 changed files with 18 additions and 9 deletions

View File

@ -237,13 +237,17 @@ func handlePinTemplate(w http.ResponseWriter, r *http.Request, errorMessage stri
type Data struct { type Data struct {
Title string Title string
SubmitText string SubmitText string
Error string Notice string
}
if errorMessage == "" {
errorMessage = "Please enter the PIN"
} }
data := Data{ data := Data{
Title: "Enter Pin", Title: "Enter Pin",
SubmitText: "Submit Pin", SubmitText: "Submit Pin",
Error: errorMessage, Notice: errorMessage,
} }
err = t.Execute(w, data) err = t.Execute(w, data)

View File

@ -37,7 +37,7 @@ span.msg {
color: #cfccd1; color: #cfccd1;
} }
.msg a { .msg a, .doornotice {
color: #cfccd1; color: #cfccd1;
} }
@ -190,6 +190,13 @@ input[type=text] {
justify-content: center; justify-content: center;
} }
#doorentry {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
}
#chatwindow { #chatwindow {
display: none; display: none;

View File

@ -1,13 +1,11 @@
{{define "header"}} {{define "header"}}{{end}}
{{end}}
{{define "body"}} {{define "body"}}
<div> <div id="doorentry">
{{if .Error}}<div>{{.Error}}</div>{{end}} {{if .Notice}}<div class="doornotice">{{.Notice}}</div>{{end}}
<form action="/" method="post"> <form action="/" method="post">
<input type="text" name="txtInput" /><br /> <input type="text" name="txtInput" /><br />
<input type="submit" value="{{.SubmitText}}" /> <input type="submit" value="{{.SubmitText}}" class="button pretty-button" />
</form> </form>
</div> </div>
{{end}} {{end}}