/themes/default/templates/newcomment_form.html

http://n23.googlecode.com/ · HTML · 13 lines · 13 code · 0 blank · 0 comment · 0 complexity · e51009ffe034ae81aba4378f5426ee98 MD5 · raw file

  1. <form id="newcomment" action="/blog/newcomment" method="post">
  2. <input name="email" id="email" disabled="disabled" style="color:gray;" value="{{ self.user.user.email }}" />
  3. <label for="email" style="font-size:70%">Your Google Account (will not be published)</label> <br />
  4. <input name="nick" id="nick" value="{{ self.user|escape }}" maxlength="30" />
  5. <label for="nick" style="font-size:70%">Nick</label> <br />
  6. <input name="site" id="site" value="{{ self.user.website|default:"http://"|escape }}" />
  7. <label for="site" style="font-size:70%">Website</label> <br />
  8. <b style="font-size:70%">Note: Changing of your nick and website will affect your previous comments</b><br />
  9. <textarea name="comment_content" id="comment_content"></textarea>
  10. <input type="hidden" name="postid" id="postid" value="{{ post.key.id }}" />
  11. <br />
  12. <input type="submit" value="Submit Comment" />
  13. </form>