forked from larymak/Python-project-Scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult.html
More file actions
26 lines (25 loc) · 983 Bytes
/
result.html
File metadata and controls
26 lines (25 loc) · 983 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>RESULT</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body align=center>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4"><legend><h1>YOUR RESULT IS</h1></legend></div>
<div class="col-md-4"></div>
</div>
<form class="form-horizontal">
<fieldset disabled>
<div class="form-group">
<label class="control-label col-xs-4" for="result"></label>
<div class="col-xs-4" align="center">
<input type="text" name="result" class="form-control" placeholder={{ entry }}>
</div>
</div>
</fieldset>
<a type="button" class="btn btn-primary" href="{{ url_for('welcome') }}">Go Back</a>
</form>
</body>
</html>