-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update forms to better consistency with html5 #305
Conversation
@@ -71,7 +71,6 @@ <h3><a name="level"></a>Select your registration options and level.</h3> | |||
<hr/> | |||
<div class="container-fluid"> | |||
<div class="row" id="levelContainer"> | |||
<noscript>Javascript is required for this site.</noscript> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was on the page twice
@@ -49,13 +49,13 @@ <h1>Pre-Register for {{ event }}!</h1> | |||
|
|||
{% show_attendee_form event=event emailOptions=True %} | |||
|
|||
<h3><a name="level"></a>Select your registration options and level.</h3> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This anchor might be in place for jumping to from another part of the form
</div> | ||
|
||
<div class="col-sm-5"> | ||
<select id="bmonth" name="bmonth" class="form-control" required> | ||
<select autocomplete="bday-month" class="form-control" id="bmonth" name="bmonth" required> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personally, I don't like to alphabetize properties like this. The previous ordering places the properties most pertinent to DOM manipulation first, making it a little easier to read at a glance.
No description provided.