File: two.html

package info (click to toggle)
sabnzbdplus 0.7.18-1
  • links: PTS, VCS
  • area: contrib
  • in suites: jessie, jessie-kfreebsd
  • size: 10,224 kB
  • ctags: 4,911
  • sloc: python: 34,096; sh: 102; xml: 37; makefile: 34
file content (50 lines) | stat: -rw-r--r-- 2,839 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!--#include $webdir + "/inc_top.tmpl"#-->
<script type="text/javascript" src="static/javascript/jquery.js"></script>
<script type="text/javascript" src="static/javascript/pagetwo.js"></script>
<form action="./three" method="post" autocomplete="off">
<div class="indented bigger">
<h3>$T('wizard-access')</h3>
<!--#if $host in ('localhost','0.0.0.0')#-->
  <input type="radio" name="access" id="all" value="0.0.0.0" <!--#if $host == '0.0.0.0' then 'checked="checked"' else ''#-->> <label for="all">$T('wizard-access-anypc')</label><br />
  <input type="radio" name="access" id="local" value="localhost" <!--#if $host == 'localhost' then 'checked="checked"' else ''#-->> <label for="local">$T('wizard-access-mypc')</label><br />
  <br />
<!--#end if#-->
  <input type="checkbox" name="enable_webpass" id="enable_webpass" value="1" <!--#if $web_user then 'checked="checked"' else ''#--> <label for="enable_webpass">$T('wizard-access-pass')</label><br />
  <br class="clear" />
  <div id="serverDetails">
    <label class="label">$T('srv-username'):</label><input type="text" size="20" value="$web_user" name="web_user" id="web_user">
    <br class="clear" />
    <label class="label">$T('srv-password'):</label><input type="password" size="20" value="$web_pass" name="web_pass" id="web_pass">
  </div>
  <br class="clear" />

  <input type="checkbox" name="enable_https" id="enable_https" value="1" <!--#if $enable_https == 1 then 'checked="checked"' else ''#--><!--#if $have_ssl then '' else 'disabled'#-->> <label for="enable_https"><!--#if $have_ssl then $T('wizard-access-https') else '<span class="disabled-text">'+$T('wizard-access-https')+'</span> (pyopenssl (python-ssl) '+$T('opt-notInstalled')+')'#--></label><br />
<br />
<h3>$T('wizard-misc')</h3>
  <input type="checkbox" name="autobrowser" id="autobrowser" value="1" <!--#if $autobrowser == 1 then 'checked="checked"' else ''#-->> <label for="autobrowser">$T('wizard-misc-browser')</label><br />
  <!--<input type="checkbox" name="autostart" id="autostart" value="1"> <label for="autostart">Launch SABnzbd when windows starts.</label><br />-->
</div>
<input type="hidden" name="dummyval" value="1" />


</div>
<hr /><br/>
<div class="full-width">
<table class="full-width">
  <tr>
    <td><input class="bigbutton" type="button" onclick="document.location ='./one'" value="&lsaquo; $T('wizard-previous')" /></td>
    <td>
      <div class="align-center">
        <!--#for $step in xrange($steps)#-->
          <!--#set $step = $step + 1#-->
            <span class="<!--#if $step == $number then 'selected' else 'unselected'#-->">$step</span>
        <!--#end for#-->
      </div>
    </td>
    <td class="align-right"><input class="bigbutton" type="submit" value="$T('wizard-next') &raquo;" /></td>
  </tr>
</table>
</div>
</form>

<!--#include $webdir + "/inc_bottom.tmpl"#-->