Skip to content

Instantly share code, notes, and snippets.

@chocksaway
Created April 5, 2015 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chocksaway/92d489ebdad5938c972e to your computer and use it in GitHub Desktop.
Save chocksaway/92d489ebdad5938c972e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
Select sites you want to compare
<form id="sites_form" action="sites" method="post">
{% for each_site in sites_for_user %}
<p><input type="checkbox" {% if selected_sites[each_site] %}checked="checked"{% end %} name="{{ each_site }}" style="width:99%" id="email"><label class="grey" for="log">{{ sites_for_user.get(each_site) }}</label></p>
{% end %}
<input type="submit" id="sitesbtn" name="sites" value="SITES" class="button"><br />
<a href="logout">Logout</a>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment