Пример #1
0
<?php

require '../include/ctf.inc.php';
prefer_ssl();
enforce_authentication();
head(lang_get('expression_of_interest'));
section_head(lang_get('expression_of_interest'));
message_inline_bland(lang_get('recruitment_text'));
form_start('actions/recruit', 'form-signin');
echo '
    <input name="name" type="text" class="form-control" placeholder="', lang_get('name_optional'), '">
    <input name="email" type="email" class="form-control" placeholder="', lang_get('email_address'), '" required>
    <input name="city" type="text" class="form-control" placeholder="', lang_get('city_optional'), '">
    ';
country_select();
form_hidden('action', 'register');
echo '
    <button class="btn btn-primary" type="submit">', lang_get('register_interest'), '</button>
    ';
form_end();
foot();
Пример #2
0
<?php

require '../include/mellivora.inc.php';
prefer_ssl();
head('Register interest');
section_head('Register interest');
message_inline_bland("We are likely to run more CTFs in the future. These will most likely be open to the public.\n                      Input your email below if you're interested in hearing from us about future competitions.\n                      We won't spam you. Your email address won't be shared with third parties.");
form_start('actions/interest', 'form-signin');
echo '
    <input name="email" type="text" class="form-control" placeholder="Email address">
    <input name="name" type="text" class="form-control" placeholder="Name / team name / nick">';
if (CONFIG_RECAPTCHA_ENABLE_PUBLIC) {
    display_captcha();
}
form_hidden('action', 'register');
echo '
    <button class="btn btn-primary" type="submit">Register interest</button>
    ';
form_end();
foot();
Пример #3
0
<?php

require '../include/mellivora.inc.php';
prefer_ssl();
enforce_authentication();
head('Expression of interest');
section_head('Expression of interest');
message_inline_bland("Like the look of our sponsors? They're all hiring. Please fill out the form below if you wish to be contacted with recruitment information. Each team member can fill out the form individually. We won't share your details with anyone but our sponsors. We won't spam you. Only addresses entered into this form will be shared.");
form_start('actions/recruit', 'form-signin');
echo '
    <input name="name" type="text" class="form-control" placeholder="Name (optional)">
    <input name="email" type="email" class="form-control" placeholder="Email address" required>
    <input name="city" type="text" class="form-control" placeholder="City (optional)">
    ';
country_select();
form_hidden('action', 'register');
echo '
    <button class="btn btn-primary" type="submit">Register interest</button>
    ';
form_end();
foot();
Пример #4
0
<?php

require '../include/mellivora.inc.php';
prefer_ssl();
head(lang_get('register_interest'));
section_head(lang_get('register_interest'));
message_inline_bland(lang_get('register_interest_text'));
form_start('actions/interest', 'form-signin');
echo '
    <input name="email" type="text" class="form-control" placeholder="', lang_get('email_address'), '">
    <input name="name" type="text" class="form-control" placeholder="', lang_get('name_nick'), '">';
if (CONFIG_RECAPTCHA_ENABLE_PUBLIC) {
    display_captcha();
}
form_hidden('action', 'register');
echo '
    <button class="btn btn-primary" type="submit">', lang_get('register_interest'), '</button>
    ';
form_end();
foot();