github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume4/section2/gopherface/templates/uploadvideoform.html (about)

     1  <html>
     2  <head>
     3  <title>Upload Video</title>
     4  <link rel="stylesheet" type="text/css" href="/static/css/pure.css" />
     5  <link rel="stylesheet" type="text/css" href="/static/css/gopherface.css" />
     6  </head>
     7  <body>
     8  <h1>GopherFace - Upload Video</h1>
     9  
    10  <div class="formContainer uploadFormContainer">
    11  <form enctype="multipart/form-data" action="/upload-video" method="post" class="pure-form pure-form-aligned">
    12  <fieldset>
    13  
    14  	<fieldset>
    15  	<label for="videofile">Video File</label>
    16  	<input id="videofile" type="file" name="videofile" />
    17  	</fieldset>
    18  
    19  	<input type="submit" class="pure-button pure-input-1-2 pure-button-primary" value="Upload Video">
    20  
    21  <fieldset>
    22  </form>
    23  </div>
    24  
    25  </body>
    26  </html>