-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
54 lines (49 loc) · 1.22 KB
/
main.py
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
from flask import Flask, request
from caesar import rotate_string
app = Flask(__name__)
app.config['DEBUG'] = True
form = """
<!DOCTYPE html>
<html>
<head>
<style>
form {{
background-color: #eee;
padding: 20px;
margin: 0 auto;
width: 540px;
font: 16px sans-serif;
border-radius: 10px;
}}
textarea {{
margin: 10px 0;
width: 540px;
height: 120px;
}}
</style>
</head>
<body>
<!-- create your form here -->
<form action="/" method="post">
<div>
<label for="rot">Rotate by: </label>
<input type="text" value="0" name="rot" />
</div>
<textarea type="text" name="text">{0}</textarea>
<input type="submit">
</form>
</body>
</html>
"""
@app.route("/", methods=['POST'])
def encrypt():
rot = request.form['rot']
text = request.form['text']
rot = int(rot)
text = str(text)
string_rot = rotate_string(text, rot)
return form.format(string_rot)
@app.route("/")
def index():
return form.format("")
app.run()