forked from ratodigital/txt2ppt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
{% autoescape true %}
<html>
<!-- [START head_html] -->
<head>
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css" />
</head>
<!-- [END head_html] -->
<body>
<h1>Txt2Ppt</h1>
<h4>Each text line will generate one PPT slide.</h4>
<!--
{% for greeting in greetings %}
{% if greeting.author %}
<b>{{ greeting.author.nickname() }}</b> wrote:
{% else %}
An anonymous person wrote:
{% endif %}
<blockquote>{{ greeting.content }}</blockquote>
{% endfor %}
-->
<form action="/ppt?username={{ username }}" method="post">
<div><textarea name="content" rows="30" cols="80" required></textarea></div>
<div><p align="left">Font size:<input type="text" name="fontsize" value="30" size="2"> Font color:<input type="color" name="fontcolor"></p></div>
<div><input type="submit" style="font-size:20px" value="Generate PPT"></div>
</form>
<!--
<hr>
<form>Username:
<input value="{{ username }}" name="username">
<input type="submit" value="switch">
</form>
<a href="{{ url|safe }}">{{ url_linktext }}</a>
-->
<p style="font-size: 10px">Copyright <a href="http://marketing4nerds.com" target="_blank">Marketing4Nerds.com</a>
2014</p> </body>
</html>
{% endautoescape %}