-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (57 loc) · 2.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Doing the Work</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A self-reflection tool for questioning and strengthening your beliefs.">
<meta name="color-scheme" content="dark light">
<meta property="og:type" content="website">
<meta property="og:title" content="Doing the Work">
<meta property="og:description" content="A self-reflection tool for questioning and strengthening your beliefs.">
<meta property="og:url" content="https://doingthework.glitch.me">
<meta property="og:image" content="https://doingthework.glitch.me/documentation/cover.png">
<meta property="og:image:alt" content="Text reading 'How does that make you feel?' with a line for input below.">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:creator" content="@bookwormgirl910">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
<link href="http://fonts.cdnfonts.com/css/arimo" rel="stylesheet">
</head>
<body>
<header class="header" role="banner">
<p class="title"><a href="/">Doing the Work</a></p>
<p>A self-reflection tool for questioning and strengthening your beliefs. <a href="/about">Read more</a></p>
</header>
<main>
<div class="start">
<p>Generated prompt:</p>
<p class="prompt">
<span id="prompt_span" class="prompt_span"></span>
<button id="prompt_refresh" class="prompt_refresh button_icon button" type="button">⟳</button>
<button id="prompt_custom" class="prompt_custom button_text button" type="button">custom</button>
</p>
</div>
<form class="listener_form animated visible" id="listener_form">
<label for="listener">optionally, imagine a listener: </label>
<select name="listener" id="listener" class="listener select">
<option value=""></option>
<option value="yourself">yourself</option>
<option value="a friend">a friend</option>
<option value="a family member">a family member</option>
<option value="a pet">a pet</option>
<option value="a therapist">a therapist</option>
<option value="a stranger">a stranger</option>
</select>
</form>
<div class="log" id="log"></div>
<div class="animated visible" id="tools">
<button id="clear" class="button" type="button">clear log</button>
<button id="save" class="button" type="button">save</button>
<button id="theme" class="button" type="button">toggle theme</button>
</div>
</main>
<script src="/js/theme.js"></script>
<script src="/js/scripts.js"></script>
</body>
</html>