Advertisement
Guest User

Untitled

a guest
Jun 4th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. % if not logged:
  2. <form name="input" action="/login" method="post">
  3. Username: <input type="text" name="username" /></br>
  4. Password: <input type="text" name="password" />
  5. <input type="submit" value="Submit" />
  6. </form>
  7. % else :
  8. <h4> ${name}'s page</h4>
  9. % if not following:
  10. Click me to <a href="../follow/${name}">follow ${name}</a>
  11. %endif
  12. % endif
  13. Most recant updates.
  14. % if updates:
  15. % for x in updates:
  16. <p>${x[1]} </p> on ${x[0]} <hr />
  17. % endfor
  18. % endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement