code/app/static/index.html (25 lines of code) (raw):

<!DOCTYPE html> <!-- Copyright 2021 Google LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Image Gallery</title> <link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;400;900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <link rel="stylesheet" href="main.css"> <script src="main.js"></script> </head> <body> <h1>Image Gallery</h1> <div class="alert">Alerts Go here</div> <form method="post"> <label class="file-label" for="myFile"> Select image to upload <span class="material-icons">image</span> <input type="file" name="myFile" id="myFile"> </label> <button class="upload" disabled>Upload <span class="material-icons">file_upload</span></button> </form> <div class="gallery"></div> </body> </html>