Compare commits

..

No commits in common. "9dabbf9bebf9aaa4702cb18d53af754660912fa6" and "7090873611711afa06104eb57c07001fcaf922f8" have entirely different histories.

2 changed files with 9 additions and 8 deletions

View File

@ -31,6 +31,6 @@ func main() {
GET("/", html.Index).
Middleware(ws.LoggingMiddleware(log))
log.ColorBracket(0, logie.Colors().Background(logie.ColorWhite).Foreground(logie.ColorBlack)).Infof("Starting server on [%s]", *host)
log.ColorBracket(0, logie.Colors().Background(logie.ColorWhite).Foreground(logie.ColorBlack)).Infof("Starting server on [%s]", host)
log.Fatal(http.ListenAndServe(*host, router))
}

View File

@ -15,18 +15,19 @@
}
#main-upload {
margin-left: auto;
margin-right: auto;
margin-top: 10%;
margin-bottom: 30%;
width: 30%;
border: 5px solid rebeccapurple;
height: 30vw;
padding: 10px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(13, 6, 19, 0.4);
font-size: large;
font-weight: bold;
display: flex;
justify-content: center;
}
</style>
@ -35,8 +36,8 @@
<body>
<h1>file upload</h1>
<div id="main-upload">
<p>Paste a file to upload it</p>
<form id="upload-form" method="post" action="/v1/upload" enctype="multipart/form-data" hidden>
<form id="upload-form" method="post" action="/v1/upload" enctype="multipart/form-data">
<label for="upload">Upload a file</label>
<input type="file" id="upload" name="upload" accept="*" value="upload">
</form>
</div>