Skip to content

Instantly share code, notes, and snippets.

@dingzhihu
Created May 15, 2012 06:01
Show Gist options
  • Save dingzhihu/2699475 to your computer and use it in GitHub Desktop.
Save dingzhihu/2699475 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Contact us</title>
</head>
<body>
<h1>Contact us</h1>
{% if errors %}
<ul>
{% for error in errors %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
<form action='' method='post'>
{% csrf_token %}
<p>Subject:<input type='text' name="subject"></p>
<p> Your e-mail(optional):<input type="text" name="email"></p>
<p>Message :<textarea name='message' rows="10" clos="50"></textarea></p>
<input type="submit" value="Submit">
</form>
</body>
</html>
@dingzhihu
Copy link
Author

my first gist snippet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment