-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
80 lines (77 loc) · 2.37 KB
/
feedback.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Language Translation</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<style>
body {
font-family: -apple-system, sans-serif;
background-color: #fafafa;
}
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
</style>
</head>
<body>
<div class="container">
<h2 align="center">Software Engineering</h2><br>
<div class="jumbotron">
<p>The project aims to create a English to German and English to French language
translation model based on the reference research papers mentioned below. The deep learning
neural network model architecture consists of encoder decoder pair of recurrent neural network
to achieve sequence to sequence phrase translation between the languages.</p>
</div>
<div>
<div class="column">
<form id="feedbackform" action="http://localhost:5000/feedback" method="post" >
<div class="form-group">
<label for="name">Name:</label>
<input type="text" class="form-control" id="name" name="name">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="text" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="feedback">Feedback:</label>
<textarea rows="5" cols="58" id="feedback" name="feedback" placeholder="Please Enter Feedback"></textarea>
</div>
<input type="submit" class="btn btn-primary" value="Submit Feedback">
</form>
</div>
</div>
</div>
</body>
</html>