Created
May 9, 2019 20:48
-
-
Save chartjes/0bdebb8182729ed0a89886268022281d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group"> | |
<label for="event_id">Event ID (eg https://opencfp-central.com/myconf2020)</label> | |
<input type="text" class="form-control" name="event_id" placeholder="myconf2020"/> | |
</div> | |
<div class="form-group"> | |
<label for="event_title">Event title</label> | |
<input type="text" class="form-control" name="event_title" placeholder="My Conference 2020"/> | |
</div> | |
<div class="form-group"> | |
<label for="event_date_range">Event date</label><br> | |
<v2-datepicker-range v-model="event_date_range" lang="en"></v2-datepicker-range> | |
</div> | |
<div class="form-group"> | |
<label for="event_url">Event URL</label> | |
<input type="text" class="form-control" name="event_url" placeholder="https://myconference.com"/> | |
</div> | |
<div class="form-group"> | |
<label for="event_email">CFP contact email address</label> | |
<input type="text" class="form-control" name="cfp_email" placeholder="[email protected]"/> | |
</div> | |
<div class="form-group"> | |
<label for="event_location">Event location</label> | |
<input type="text" class="form-control" name="event_location" /> | |
</div> | |
<div class="form-group"> | |
<label for="cfp_date_range">CFP date range (will open and close at midnight UTC, use <a href="https://everytimezone.com">Every Time Zone</a> for help)</label> | |
<v2-datepicker-range v-model="cfp_date_range" lang="en"></v2-datepicker-range> | |
</div> | |
<div class="form-group"> | |
<label for="cfp_has_code_of_conduct">Does your CFP have a Code of Conduct?</label> | |
<select name="cfp_has_code_of_conduct" onclick="toggleHasCodeOfConduct()"> | |
<option value="yes">Yes</option> | |
<option value="no" selected>No</option> | |
</select> | |
</div> | |
<div class="form-group" id="use-conf-code-of-conduct" style="display:none"> | |
<label for="use_confcodeofconduct">Use <a href="http://confcodeofconduct.com" target="_blank">Conference Code of Conduct?</a></label> | |
<select name="use_confcodeofconduct" onclick="toggleUseConfCodeOfConduct()"> | |
<option value="yes" selected>Yes</option> | |
<option value="no">No</option> | |
</select> | |
</div> | |
<div class="form-group" id="code-of-conduct-url" style="display:none"> | |
<label for="cfp_code_of_conduct_url">Code of conduct URL</label> | |
<input type="text" class="form-control" name="cfp_code_of_conduct_url" /> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment