forked from turingschool-examples/self-care-center
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (147 loc) · 4.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="queries.css" />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- START OF PAGE 0 LOGIN-->
<section class="PAGE0-LOGIN">
<div class="home-page">
<div class="header">
<h1 class="home-header">✨DAILY MESSAGE✨</h1>
</div>
</div>
<div class="login-and-inputs">
<form class="login-form login-form-start">
<label for="name" class="loginlabel login-email">NAME</label>
<input
type="name"
id="name"
class="login-input"
placeholder="ENTER NAME..."
/>
<button class="login-sign-in" type="submit">LOG IN</button>
</form>
</div>
</section>
<!-- END OF PAGE 2 FAVORITES -->
<!-- START OF PAGE 1 HOME -->
<section class="PAGE1-HOME hidden">
<div class="nav-bar">
<div class = "welcome-sign-out">
<p class="welcome"></p>
<p class="sign-out">Sign Out</p>
</div>
<p class="view-favorites">View My Favourites</p>
</div>
<div class="home-page">
<div class="header">
<h1 class="home-header">✨DAILY MESSAGE✨</h1>
</div>
<div class="choose-message">
<h2>Which type of message?</h2>
<div class="radio-form-btn">
<div class="radio-form">
<input
type="radio"
id="affirmation"
class="affirmation"
name="choose-message"
/>
<label for="affirmation" class="affirmation-circle">Affirmation</label
><span></span>
<input
type="radio"
id="mantra"
class="mantra"
name="choose-message"
/>
<label for="mantra" class="mantra-circle">Pun</label>
</div>
<button type="submit" class="recieve-message-btn">
Receive Message
</button>
</div>
</div>
<div class="display-message">
<div class="home-med-image">
<img
class="meditation-icon"
src="assets/meditate.svg"
alt="meditation icon"
/>
</div>
<div class="message-text hidden">Onward and Upward</div>
<button class="clear-btn hidden">clear</button>
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
stroke-width="1.5"
stroke="black"
class="heart-icon hidden"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
d="M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12z"
/>
</svg>
</div>
<div class="add-message">
<button class="add-message-btn">Add My Own Message</button>
<form class="add-message-form hide-form">
<div class="selection">
<label for="message-type" class="message-type">Message Type</label>
<select
name="personalized-message"
id="message-category"
form="carform"
>
<option value="choose">Choose</option>
<option value="affirmation">Affirmation</option>
<option value="mantra">Pun</option>
</select>
</div>
<div class="enter-message">
<label for="fname" class="enter-message">Enter Your Own Message</label><br />
<input
class="input-field"
type="text"
id="message-input"
name="message-input"
/>
</div>
<div class="submit-msg-btn">
<button class="submit-msg-btn">submit my message</button>
</div>
</form>
</div>
</div>
</section>
<!-- END OF PAGE 1 HOME -->
<!-- START OF PAGE 2 FAVORITES -->
<section class="PAGE2-FAVES hidden">
<div class="nav-bar">
<p class="welcome"></p>
<p class="go-home">⬅ Home</p>
</div>
<div class="home-page">
<div class="header">
<h1 class="names-favorites"></h1>
</div>
<div class="fave-display">
</div>
</section>
<!-- END OF PAGE 2 FAVORITES -->
<script src="data.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>