-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathQuestionaire.php
290 lines (264 loc) · 11.3 KB
/
Questionaire.php
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>QUESTIONNAIRE</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Oswald:wght@700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-weight: 200
}
html{
scroll-behavior: smooth;
}
body{
/* background: #bf1807; */
background-image: url(./images/colorful-abstract-nebula-space.jpg);
background-repeat: no-repeat;
background-attachment:fixed;
background-size: cover;
}
.box{
/* background-color: rgb(0 0 0 / 30%);
backdrop-filter: blur(10px); */
text-align: left;
/* padding-left: 20rem;
padding-right: 20rem;
padding-top: 7rem; */
width: 70%;
/* padding: 7rem 15rem 2rem 15rem; */
padding-top: 12rem;
padding-bottom: 15rem;
/* border: 2px solid black; */
/* box-shadow: 1px 2px 4px rgba(0,0,0,0.3); */
}
.page-top-2{
background-image: url(./images/colorful-abstract-nebula-space.jpg);
background-repeat: no-repeat;
background-attachment:fixed;
/* background-size: 100%; */
}
.box .headings{
background: #fcfcfc;
border-radius: 7px 7px 0px 0px;
padding: 10px;
color: rgb(243, 0, 0);
text-align: center;
font-size: 30px;
font-family: 'Oswald', sans-serif;
/* min-width: 970px; */
}
.faqs{
padding: 0px 20px 20px;
}
.details{
/* background: #f6f6f6; */
/* padding: 0 16px 16px 77px; */
border-radius: 7px;
margin-top: 20px;
font-family: sans-serif;
font-size: 15px;
letter-spacing: 1px;
/* display: flex; */
align-items: center;
}
.summary{
outline: none;
padding-bottom: 10px;
font-size: 18px;
color: white;
font-family: 'Montserrat', sans-serif;
width: 100%;
font-weight: 500;
}
.answer_text{
width: 100%;
/* margin: ; */
/* height: 3.2rem; */
padding: 0.5rem 0.5rem 0.5rem 1rem;
/* margin-left: 2rem; */
border: #000000;
font-weight: 600;
border-radius: 0.6rem;
font-family: 'Montserrat', sans-serif;
font-size: 12px;
}
.btnhi{
text-align: center;
margin: 2rem;
}
.u-box{
width: 100%;
/* background-color: #000000; */
background-color: rgba(0, 0, 0, 0.168);
backdrop-filter: blur(5px);
}
textarea{
width: 100%;
border: 2px;
border-radius: 5px;
font-weight: 600;
padding: 5px;
}
@media only screen and (max-width: 768px){
.box{
width: 90%;
}
}
</style>
<body class="page-top-2">
<header class="header">
<div>
<a class="logo" href="https://www.ecellvnit.org/"><img class="logo" src="images/Layer 1.png" alt=""></a>
</div>
<div>
<input class="menu-btn" type="checkbox" id="menu-btn" />
<label class="menu-icon" for="menu-btn"><span class="navicon"></span></label>
<ul class="menu">
<li><a href="./index.php" class="link link-theme link-arrow">HOME</a></li>
<li><a href="./structure.php" class="link link-theme link-arrow">INFO</a></li>
<li><a href="./speakers.php" class="link link-theme link-arrow">SPEAKERS</a></li>
<li><a href="./index.php#contact" class="link link-theme link-arrow">CONTACT US</a></li>
<li><a href="./logout.php" class="link link-theme link-arrow">LOGOUT</a></li>
</ul>
</div>
</header>
<form action="" name="SUC-Q2023" method="post" id="ques-form">
<center>
<div class="u-box" >
<div class="box">
<p class="headings">QUESTIONNAIRE</p>
<div class="details">
<div class="summary">Team Name</div>
<input name="TeamName" id="TeamName" class="answer_text" required>
</div>
<div class="details">
<div class="summary">From where did you get to know about Startup Conclave?</div>
<select id="source" name="source" type="text" class="answer_text" required >
<option class="option_text" value="select">Select </option>
<option class="option_text" value="Instagram">Instagram</option>
<option class="option_text" value="Linkedin">Linkedin</option>
<option class="option_text" value="Blue_Learn">Blue-Learn</option>
<option class="option_text" value="Headstart">Headstart</option>
<option class="option_text" value="other">Others</option>
</select>
<!-- <div id="ifYes" style="display: none;">
<label for="car">Muu, mikä?</label> <textarea placeholder="Please specify" required name="" id="" cols="50" rows="1" ></textarea>
</div> -->
</div>
<div class="details">
<div class="summary">What is the role of each member in the Startup ?</div> <textarea required name="role" id="role" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">What is the background (Educational / Work Experience) of each member of the Startup ?</div> <textarea required name="Background" id="Background" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Is your startup is in Ideation Stage or Working Stage?</div>
<select name="Stage" id="Stage" type="text" class="answer_text" required>
<option value="Stage">Select Stage</option>
<option value="Ideation">Ideation Stage</option>
<option value="Working">Working Stage</option>
</select>
</div>
<div class="details">
<div class="summary">Provide a brief description of the problem identified.</div>
<textarea required name="q1" id="q1" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Provide a brief synopsis of the solution developed.</div>
<textarea name="q2" id="q2" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Provide a detailed use case of your idea.</div>
<textarea required name="q3" id="q3" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Mention details about your market sizing and target customer segment.</div>
<textarea required name="q4" id="q4" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Are there any presently operational startups serving the same problem? If yes, mention the differentiators your company holds.(Mention scope of patency or other intellectual property rights, if any). </div>
<textarea required name="q5" id="q5" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Is your idea a revenue-generating one? Explain the revenue model in brief including the components that affect costings and prices.
</div>
<textarea required name="q6" id="q6" cols="50" rows="5" ></textarea>
</div>
<div class="details" style="text-align:center">
<div class="summary" style="color: rgb(255, 255, 255);text-align: center; padding-top: 2px; padding-bottom: 2px; background-color: #bf1807;">Note : If your startup is in Ideation stage, just answer <b>"NA"</b> for the below given questions</div>
</div>
<div class="details">
<div class="summary">What was the revenue of your startup in the last few financial years? What is the total volume of services/products sold till date?</div>
<textarea required name="q7" id="q7" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">What are the operational and marketing channels your venture uses? For how long is your venture operational? Brief about the growth that your venture has experienced (specifying the basis of growth)</div>
<textarea required name="q8" id="q8" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">What growth opportunities do you see for your venture? (Be specific and precise)
Mention if you have secured funding, incubation, or enrolled in any (if any) accelerator program.
</div>
<textarea required name="q9" id="q9" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary">Mention details about the help you demand for your venture.</div>
<textarea required name="q10" id="q10" cols="50" rows="5" ></textarea>
</div>
<div class="details">
<div class="summary"> Add the website link of your Startup(If any)</div>
<textarea name="q11" id="q11" cols="50" rows="5" ></textarea>
</div>
<div class="btnhi">
<button class="register button-24" type="submit" name="submit" role="button">SUBMIT</button>
</div>
</div>
</div>
</div>
</center>
</form>
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="savy.min.js"></script>
<script type="text/javascript">
$('.auto-save').savy('load',function(){
console.log("All data from savy are loaded");
});
function dstry(){
$('.auto-save').savy('destroy',function(){
console.log("All data from savy are Destroyed");
window.location.reload();
});
}
</script>
<script>
const scriptURL = 'https://script.google.com/macros/s/AKfycbyRNwutw70kplWtFLvqNuZLmVC-ODrHWeNaZykTq8kLZfDXoYc4TQFyqJoIC5uqFGK2DA/exec'
const form = document.forms['SUC-Q2023']
form.addEventListener('submit', e => {
e.preventDefault()
fetch(scriptURL, { method: 'POST', body: new FormData(form)})
.then(window.location.href = "thanks.php")
.catch(error => console.error('Error!', error.message))
})
<script>
function yesnoCheck(that) {
if (that.value == "other") {
document.getElementById("ifYes").style.display = "block";
} else {
document.getElementById("ifYes").style.display = "none";
}
}
</script>
</script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>