all repos — myprecious @ b801eb597c454df07865ba1a9678728bd8f71e15

A lightweight web service to backup precious game saves.

myprecious/templates/index.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3
 4<head>
 5    <meta charset="utf-8">
 6    <meta name="viewport" content="width=device-width, initial-scale=1">
 7    <title>myprecious</title>
 8    <link rel="stylesheet" href="/static/style.css">
 9    <style></style>
10</head>
11
12<body>
13
14    <header>
15        <nav>
16            <a href="#">Home</a>
17            <a href="#">Upload</a>
18            <a href="#">Login</a>
19            <a href="#">Register</a>
20        </nav>
21    </header>
22
23    <main>
24        <h1>MyPrecious</h1>
25        <p></p>
26        <p>A simple game saves library.</p>
27        <p></p>
28
29        <form action="/uploader" method="POST" enctype="multipart/form-data">
30            <input type="file" name="file" />
31            <input type="text" name="game_id" placeholder="Game ID" />
32            <input type="submit" />
33        </form>
34
35        <nav>
36            <span>questions: </span>
37            <a href="#">what is this</a>
38            <a href="https://birabittoh.github.io/">who made this</a>
39        </nav>
40
41    </main>
42
43
44</body>
45
46</html>