-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
51 lines (44 loc) · 1.13 KB
/
main.py
File metadata and controls
51 lines (44 loc) · 1.13 KB
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
from flask import Flask, request
from caesar import rotate_string
app = Flask(__name__)
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>
<form method="post">
<label for="message-input">Rotate by:</label>
<input type="text" id="rot" name="rot" value=0>
<textarea name="text">{0}</textarea>
<input type="submit" value="Encrypt">
</form>
</body>
</html>
"""
@app.route('/')
def index():
return form.format('')
@app.route('/', methods=['POST'])
def encrypt():
text = request.form.get('text')
rot = int(request.form.get('rot'))
encrypted = rotate_string(text, rot)
return form.format(encrypted)
if __name__ == '__main__':
app.run()