settings.html (1182B) download
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Memory</title>
5 <link rel='stylesheet' href='css/settings.css' />
6 <meta name='viewport' content='width=device-width, initial-scale=1' />
7 </head>
8 <body>
9 <div class='container'>
10 <span id='message'></span>
11 <span id='login'></span>
12 <form>
13 <label for="email">Email</label>
14 <input type='text' id='email' /><br>
15 <label for="api">Select card theme:</label>
16 <select id="api">
17 <option value="none">Select Picture Set:</option>
18 <option value="dog">Doggos</option>
19 <option value="cat">Kitties</option>
20 </select><br>
21 <div class ="color_select">
22 <div class="color-div">
23 <label for='color-found'>Color found</label>
24 <input type='color' id='color-found' /><br>
25 </div>
26 <div class="color-div">
27 <label for='color-closed'>Color closed</label>
28 <input type='color' id='color-closed' /><br>
29 </div>
30 </div>
31 <button type='button' id='submit'>submit</button>
32 </form>
33 </div>
34
35 <script type='text/javascript' src='backend.js'></script>
36 <script type='text/javascript' src='settings.js'></script>
37 </body>
38</html>