Skip to content

Instantly share code, notes, and snippets.

@drewrothstein
Created March 26, 2017 23:12
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 drewrothstein/7d47e07a566dbf2fd788b7c54fda5114 to your computer and use it in GitHub Desktop.
Save drewrothstein/7d47e07a566dbf2fd788b7c54fda5114 to your computer and use it in GitHub Desktop.
Frontend Design Setup
<html>
<head>
<title>Simple Bird Mail</title>
<link rel="stylesheet" type="text/css" href="/static/style.css">
</head>
<body>
<div id="container">
<div class="pagetitle">
<h1>Simple Bird Mail</h1>
</div>
<div id="main">
<form method="post" action="{{ url_for('submitted_form') }}">
<label for="twitter_handle">Handle:</label>
<input type="text" name="twitter_handle"><br />
<label for="email">Email:</label>
<input type="email" name="email"><br />
<label for="frequency">Frequency:</label>
<input type="radio" name="frequency" value="daily" checked> Daily
<input type="radio" name="frequency" value="weekly"> Weekly<br>
<input type="submit">
</form>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment