179 lines
7.7 KiB
Smarty
179 lines
7.7 KiB
Smarty
{extends file='page.tpl'}
|
|
|
|
{block name=main}
|
|
<div class="row" style="display:none" id="form-block">
|
|
<div class="col-md-8 col-md-offset-2">
|
|
<form name="formulaire" id="formulaire" action="" method="POST" class="form-horizontal" role="form">
|
|
|
|
<div class="alert alert-info">
|
|
<p>
|
|
{__('Step 1', 'You are in the poll creation section.')}<br/>
|
|
{__('Step 1', 'Required fields cannot be left blank.')}
|
|
</p>
|
|
</div>
|
|
<div class="form-group '.$errors['title']['class'].'">
|
|
<label for="poll_title" class="col-sm-4 control-label">{__('Step 1', 'Poll title')} *</label>
|
|
|
|
<div class="col-sm-8">
|
|
<input id="poll_title" type="text" name="title" class="form-control" {$errors['title']['aria']}
|
|
value="{$poll_title}"/>
|
|
</div>
|
|
</div>
|
|
{if !empty($errors['title']['msg'])}
|
|
<div class="alert alert-danger">
|
|
<p id="poll_title_error">
|
|
{$errors['title']['msg']}
|
|
</p>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="form-group '.$errors['description']['class'].'">
|
|
<label for="poll_comments" class="col-sm-4 control-label">{__('Generic', 'Description')}</label>
|
|
|
|
<div class="col-sm-8">
|
|
<textarea id="poll_comments" name="description"
|
|
class="form-control" {$errors['description']['aria']}
|
|
rows="5">{$poll_description}</textarea>
|
|
</div>
|
|
</div>
|
|
{if !empty($errors['description']['msg'])}
|
|
<div class="alert alert-danger">
|
|
<p id="poll_title_error">
|
|
{$errors['description']['msg']}
|
|
</p>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="form-group '.$errors['name']['class'].'">
|
|
<label for="yourname" class="col-sm-4 control-label">{__('Generic', 'Your name')} *</label>
|
|
|
|
<div class="col-sm-8">
|
|
{if $useRemoteUser}
|
|
<input type="hidden" name="name" value="{$form->admin_name}" />{$form->admin_name}
|
|
{else}
|
|
<input id="yourname" type="text" name="name" class="form-control" {$errors['name']['aria']} value="{$poll_name}" />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{if !empty($errors['name']['msg'])}
|
|
<div class="alert alert-danger">
|
|
<p id="poll_title_error">
|
|
{$errors['name']['msg']}
|
|
</p>
|
|
</div>
|
|
{/if}
|
|
|
|
{if $use_smtp}
|
|
<div class="form-group '.$errors['email']['class'].'">
|
|
<label for="email" class="col-sm-4 control-label">
|
|
{__('Generic', 'Your email address')} *<br/>
|
|
<span class="small">{__('Generic', '(in the format name@mail.com)')}</span>
|
|
</label>
|
|
|
|
<div class="col-sm-8">
|
|
{if $useRemoteUser}
|
|
<input type="hidden" name="mail" value="{$form->admin_mail}">{$form->admin_mail}
|
|
{else}
|
|
<input id="email" type="text" name="mail" class="form-control" {$errors['email']['aria']} value="{$poll_mail}" />
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{if !empty($errors['email']['msg'])}
|
|
<div class="alert alert-danger">
|
|
<p id="poll_title_error">
|
|
{$errors['email']['msg']}
|
|
</p>
|
|
</div>
|
|
{/if}
|
|
|
|
{/if}
|
|
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-4 col-sm-8">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type=checkbox name="editable" {if $poll_editable}checked{/if} id="editable">
|
|
{__('Step 1', 'Voters can modify their vote themselves.')}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{if $use_smtp}
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-4 col-sm-8">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type=checkbox name="receiveNewVotes" {if $poll_receiveNewVotes}checked{/if}
|
|
id="receiveNewVotes">
|
|
{__('Step 1', 'To receive an email for each new vote.')}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-4 col-sm-8">
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type=checkbox name="receiveNewComments" {if $poll_receiveNewComments}checked{/if}
|
|
id="receiveNewComments">
|
|
{__('Step 1', 'To receive an email for each new comment.')}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p class="text-right">
|
|
<input type="hidden" name="type" value="$poll_type"/>
|
|
<button name="{$goToStep2}" value="{$poll_type}" type="submit"
|
|
class="btn btn-success">{__('Step 1', 'Go to step 2')}</button>
|
|
</p>
|
|
|
|
<script type="text/javascript">document.formulaire.title.focus();</script>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<noscript>
|
|
<div class="alert alert-danger">
|
|
{__('Step 1', 'Javascript is disabled on your browser. Its activation is required to create a poll.')}
|
|
</div>
|
|
</noscript>
|
|
<div id="cookie-warning" class="alert alert-danger" style="display:none">
|
|
{__('Step 1', 'Cookies are disabled on your browser. Theirs activation is required to create a poll.')}
|
|
</div>
|
|
<script>
|
|
{* TODO Put this in a JS file *}
|
|
// Check Javascript is enabled, if it is it will execute this script
|
|
(function () {
|
|
// Check cookies are enabled too
|
|
var cookieEnabled = function () {
|
|
var cookieEnabled = navigator.cookieEnabled;
|
|
|
|
// if not IE4+ nor NS6+
|
|
if (!cookieEnabled && typeof navigator.cookieEnabled === "undefined") {
|
|
document.cookie = "testcookie";
|
|
cookieEnabled = document.cookie.indexOf("testcookie") != -1;
|
|
}
|
|
|
|
return cookieEnabled;
|
|
};
|
|
|
|
if (cookieEnabled()) {
|
|
// Show the form block
|
|
document.getElementById("form-block").setAttribute("style", "");
|
|
} else {
|
|
// Show the warning about cookies
|
|
document.getElementById("cookie-warning").setAttribute("style", "");
|
|
}
|
|
})();
|
|
</script>
|
|
{/block} |