File: post_editor.html

package info (click to toggle)
python-gdata 2.0.18%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 8,460 kB
  • ctags: 17,143
  • sloc: python: 70,779; ansic: 150; makefile: 27; sh: 3
file content (17 lines) | stat: -rw-r--r-- 575 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
  <head>
    <title>List of Your Blogs</title>
  </head>
  <body>
    <h1>Write a new post for your blog</h1>
    <form action="/write_post" method="post">
      <input type="hidden" name="blog_id" value="{{ blog_id }}"></input>
      <input type="text" name="title"></input><br/>
      <textarea name="body"></textarea><br/>
      Draft: <input type="checkbox" value="true" name="draft"></input><br/>
      <input type="submit" value="Post on my blog"></input><br/>
    </form>
    <p>Done? <a href="{{ sign_out }}">Sign Out</a></p>
  </body>
</html>