forked from Siddharth1698/Coursu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
103 lines (79 loc) · 3.23 KB
/
questions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Reccomendation Question</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="{{url_for('static',filename='/Coursu/static/css/bootstrap.min.css')}}" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="{{url_for('static',filename='/Coursu/static/css/mdb.min.css')}}" rel="stylesheet">
<!-- Your custom styles (optional) -->
<link href="{{url_for('static',filename='/Coursu/static/css/style.css')}}" rel="stylesheet">
<style>
.card{
padding: 125px;
}
.i{
padding-right: 10px;
}
</style>
</head>
<body>
<!-- Start your project here-->
<!-- Card -->
<div class="card">
<!-- Card body -->
<div class="card-body">
<!-- Material form register -->
<form action="{{url_for('predict')}}" method="POST">
<p class="h4 text-center py-4">Please answer these questions</p>
<!-- Material input text -->
<div class="md-form">Do you prefer free, paid or any coursu?
<i class="fa fa-award prefix grey-text"></i>
<input type="text" id="materialFormCardNameEx" class="form-control">
</div>
<!-- Material input email -->
<div class="md-form">Topic you want to take on coursu?
<i class="fa fa-splotch prefix grey-text"></i>
<input type="text" id="materialFormCardEmailEx" class="form-control">
<label for="materialFormCardEmailEx" class="font-weight-light"></label>
</div>
<!-- Material input email -->
<div class="md-form">What is the level of difficulty : All,Begineer,Intermediate or Advanced?
<i class="fa fa-diagnoses prefix grey-text"></i>
<input type="text" id="materialFormCardConfirmEx" class="form-control">
<label for="materialFormCardConfirmEx" class="font-weight-light"></label>
</div>
<!-- Material input password -->
<div class="md-form">Any platform preffered?
<i class="fa fa-laptop-code prefix grey-text"></i>
<input type="text" id="materialFormCardConfirmEx" class="form-control">
<label for="materialFormCardConfirmEx" class="font-weight-light"></label>
</div>
<div class="text-center py-4 mt-3">
<button class="btn btn-cyan" type="submit">Lets get the Coursu
<a href="my_status.html"></a>
</button>
</div>
</form>
<!-- Material form register -->
</div>
<!-- Card body -->
</div>
<!-- Card -->
<!-- /Start your project here-->
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="/Coursu/static/js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="/Coursu/static/js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="/Coursu/static/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="/Coursu/static/js/mdb.min.js"></script>
</body>
</html>