Improve styling
parent
9d5d6acbfc
commit
697bf21eda
14
main.go
14
main.go
|
@ -155,10 +155,18 @@ var baseHeader = `<!DOCTYPE html>
|
|||
<title>{{.}}</title>
|
||||
<style>
|
||||
body {
|
||||
margin: 18pt auto;
|
||||
font-size: 16pt;
|
||||
padding: 18pt;
|
||||
text-align: center;
|
||||
font: 16pt monospace;
|
||||
color: #212121;
|
||||
}
|
||||
form {
|
||||
display: inline-block;
|
||||
text-align: left;
|
||||
}
|
||||
input {
|
||||
font: inherit;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>`
|
||||
|
@ -168,7 +176,7 @@ var baseFooter = `</body>
|
|||
|
||||
var uploadTemplate = `{{template "BaseHeader" "RUFF - Upload Form"}}
|
||||
<form enctype="multipart/form-data" action="/" method="post">
|
||||
<label for="file">Select a file for upload:</label>
|
||||
<label for="file">Select a file for upload:</label><br><br>
|
||||
<input type="file" name="file">
|
||||
<input type="submit" value="Upload"{{if .Multiple}} multiple{{end}}>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue