diff options
Diffstat (limited to 'view/theme/redbasic/tpl/new_channel.tpl')
-rwxr-xr-x | view/theme/redbasic/tpl/new_channel.tpl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/view/theme/redbasic/tpl/new_channel.tpl b/view/theme/redbasic/tpl/new_channel.tpl new file mode 100755 index 000000000..cc1983ac4 --- /dev/null +++ b/view/theme/redbasic/tpl/new_channel.tpl @@ -0,0 +1,34 @@ +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <h2>{{$title}}</h2> + </div> + <div class="section-content-wrapper"> + <div class="section-content-info-wrapper"> + {{$desc}} + </div> + {{if $channel_usage_message}} + <div class="section-content-warning-wrapper"> + {{$channel_usage_message}} + </div> + {{/if}} + <form action="new_channel" method="post" id="newchannel-form"> + {{if $default_role}} + <input type="hidden" name="permissions_role" value="{{$default_role}}" /> + {{else}} + {{include file="field_select_grouped.tpl" field=$role}} + {{/if}} + + {{include file="field_input.tpl" field=$name}} + <div id="name-spinner"></div> + + {{include file="field_input.tpl" field=$nickname}} + <div id="nick-spinner"></div> + + <button class="btn btn-primary" type="submit" name="submit" id="newchannel-submit-button" value="{{$submit}}">{{$submit}}</button> + <div id="newchannel-submit-end" class="clear"></div> + + <div id="newchannel-import-link" class="descriptive-paragraph" >{{$label_import}}</div> + <div id="newchannel-import-end" class="clear"></div> + </form> + </div> +</div> |