forked from AurumnPegasus/Confessions-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·94 lines (87 loc) · 3.19 KB
/
index.html
File metadata and controls
executable file
·94 lines (87 loc) · 3.19 KB
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="Website/css/style.css">
</head>
<body>
<div class="wrapper">
<div class="mobile-logo">
<img src="Website/img/logo.png" alt="">
</div>
<div class="logo">
<img src="Website/img/logo.png" alt="">
</div>
<div class="phrase">
<input type="text" id="name" placeholder="Enter name"/>
<div class="c-radio">
<div class="c-radio-1">
<input type="radio" id="short" name="c-size" value="short">
<label for="short">Short</label>
</div>
<div class="c-radio-2">
<input type="radio" id="medium" name="c-size" value="medium">
<label for="medium">Medium</label>
</div>
<div class="c-radio-3">
<input type="radio" id="long" name="c-size" value="long">
<label for="long">Long</label>
</div>
</div>
<div class="generate">
<button type="button" name="button" onclick="generateConfession()">GENERATE CONFESSION</button>
</div>
</div>
<div class="menu">
<div class="menu-item active">
HOME
</div>
<div class="menu-item" onclick="helpCard()">
How to Use
</div>
<div class="menu-item" onclick="teamCard()">
Team
</div>
</div>
</div>
<div id="overlay" onclick="switchOff()"></div>
<div class="card" id="help-card">
<h2>HOW TO USE THE CONFESSIONS GENERATOR?</h2> <br>
<div class="content">
<ol>
<li>Enter a phrase that you want to be included in the confession.</li>
<li>Select required length of confession from the given radio buttons.</li>
<li>Click on Generate Confession!</li>
</ol>
For example, name: "Prajneya Kumar" <br>
and confession length : Short <br> <br>
Generated Confession: Dear Prajneya, you are really non-sensical.<br> <br>
If you like the confession, you can even post the confession, or continue to have fun! :)
</div>
</div>
<div class="card" id="team-card">
<h2>GRICEAN MAXMEMES MEMBERS</h2> <br>
<div class="content team">
<ol>
<li> <a href="https://github.com/mayankgoel28">Mayank Goel</a> </li>
<li> <a href="https://github.com/smartypants042">Tanishq Chaudhary</a> </li>
<li> <a href="https://github.com/prajneya">Prajneya Kumar</a> </li>
<li> <a href="https://github.com/AurumnPegasus">Shivansh Subramanian</a> </li>
</ol>
</div>
</div>
<div class="card" id="confession-card">
<!-- <div id="loading">
<img src="loading.gif" alt="">
</div> -->
<div id="confession"></div>
<div class="submit">
<button type="button" name="button" onclick="confess()">SUBMIT CONFESSION</button>
</div>
</div>
<script type="text/javascript" src="Website/js/script.js">
</script>
</body>
</html>