Spaces:
Building
Building
File size: 2,171 Bytes
c9f9492 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Display</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
.container {
margin: 50px auto;
width: 80%;
}
.header {
background-color: #e9ecef;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
}
.header h1 {
font-size: 24px;
margin: 0;
}
.video-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
video {
width: 640px;
height: 480px;
border: 2px solid #dee2e6;
border-radius: 5px;
}
.footer {
font-size: 14px;
color: #6c757d;
}
</style>
</head>
<body>
<div class="container">
<div class="header clearfix">
<h3 class="text-muted">American Sign Langage Translation- Flask Demo</h3>
</div>
<div class="jumbotron">
<h1>Text to Sign Langage translator🏵️🌺🌸</h1>
</div>
<form action="{{ url_for('result') }}" method="post">
<div class="form-group row">
<label for="inputSentence" class="col-sm-3 col-form-label">Put your text to translate here</label>
<div class="col-sm-8">
<input type="text" class="form-control" id="inputSentence" name="inputSentence" placeholder="text to translate">
</div>
</div>
<div class="form-group row">
<div class="col-sm-5">
<button type="submit" class="btn btn-primary">Translate</button>
</div>
</div>
</form>
<div class="footer">
© team Shaima
</div>
</div>
</body>
</html>
|