2016-05-07 04:41:57 +02:00
|
|
|
|
|
|
|
<div id="poke-wrapper">
|
|
|
|
|
2016-05-20 01:50:56 +02:00
|
|
|
<h3 class="heading">{{$title}}</h3>
|
2018-12-14 04:35:51 +01:00
|
|
|
<div id="poke-desc">{{$desc nofilter}}</div>
|
2016-05-07 04:41:57 +02:00
|
|
|
|
|
|
|
<form id="poke-form" action="poke" method="get">
|
|
|
|
|
2017-01-01 22:05:24 +01:00
|
|
|
<div id="poke-content-wrapper">
|
2016-05-07 04:41:57 +02:00
|
|
|
|
2017-01-01 22:05:24 +01:00
|
|
|
{{* The input field with the recipient name*}}
|
2016-05-07 04:41:57 +02:00
|
|
|
<div id="poke-recip-wrapper" class="form-group">
|
|
|
|
<label for="poke-recip">{{$clabel}}</label>
|
2018-12-14 04:28:12 +01:00
|
|
|
<input id="poke-recip" class="form-control" type="text" size="64" maxlength="255" value="{{$name}}" name="pokename" autocomplete="off" />
|
2016-05-07 04:41:57 +02:00
|
|
|
<input id="poke-recip-complete" type="hidden" value="{{$id}}" name="cid" />
|
|
|
|
<input id="poke-parent" type="hidden" value="{{$parent}}" name="parent" />
|
|
|
|
</div>
|
|
|
|
|
2017-01-01 22:05:24 +01:00
|
|
|
{{* The drop-down list with different actions *}}
|
2016-05-07 04:41:57 +02:00
|
|
|
<div id="poke-action-wrapper" class="form-group">
|
|
|
|
<label for="poke-verb-select">{{$choice}}</label>
|
|
|
|
<select name="verb" id="poke-verb-select" class="form-control">
|
|
|
|
{{foreach $verbs as $v}}
|
|
|
|
<option value="{{$v.0}}">{{$v.1}}</option>
|
|
|
|
{{/foreach}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2017-01-01 22:05:24 +01:00
|
|
|
{{* The checkbox to select if the "poke message" should be private *}}
|
2016-05-07 04:41:57 +02:00
|
|
|
<div id="poke-private-desc" class="checkbox">
|
|
|
|
<input type="checkbox" id=poke-private-desc-checkbox" name="private" {{if $parent}}disabled="disabled"{{/if}} value="1" />
|
|
|
|
<label for="poke-private-desc-checkbox">{{$prv_desc}}</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="poke-content-wrapper-end"></div>
|
|
|
|
|
|
|
|
<div id="poke-submit-wrapper">
|
2018-12-14 04:28:12 +01:00
|
|
|
<button class="btn btn-primary pull-right" type="submit" name="submit" value="{{$submit}}"><i class="fa fa-slideshare"></i> {{$submit}}</button>
|
2016-05-07 04:41:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="poke-submit-wrapper-end"></div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
<div id="poke-wrapper-end"></div>
|
2017-01-01 22:05:24 +01:00
|
|
|
|
2016-05-07 04:41:57 +02:00
|
|
|
</div>
|