-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
53 lines (47 loc) · 1.18 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
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>
<form method="POST" action="/">
<label>Rotate by:</label>
<input type="text" name="rot" value="0" />
<textarea name="text">{0}</textarea>
<input type="submit" />
</form>
</body>
</html>
"""
@app.route("/")
def index():
return form.format("")
@app.route("/", methods=["POST"])
def encrypt():
rot = int(request.form['rot'])
text = str(request.form['text'])
encrypted_msg = ""
for i in text:
new_char = rotate_string(i, rot)
encrypted_msg += new_char
return form.format(encrypted_msg)
app.run()