summaryrefslogtreecommitdiff
path: root/httemplate/edit/cust_main/first_pkg/svc_dsl.html
blob: 31f4b5c631d25ccde81f9871127958e9af8e1d71 (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<TABLE CLASS="fsinnerbox">

% if ( $opt{'phonenum'} ) {

  <INPUT TYPE="hidden" NAME="loop_type" VALUE="">
  <INPUT TYPE="hidden" NAME="phonenum" VALUE="<% $opt{'phonenum'} %>">

  <TR>
    <TH ALIGN="right">Loop Type</TD>
    <TD BGCOLOR="#eeeeee">Line-share</TD>
  </TR>

  <TR>
    <TH ALIGN="right">Phone Number</TD>
    <TD BGCOLOR="#eeeeee"><% $opt{'phonenum'} %></TD>
  </TR>

% } else {

  <INPUT TYPE="hidden" NAME="loop_type" VALUE="0">
  <INPUT TYPE="hidden" NAME="phonenum" VALUE="">

  <TR>
    <TH ALIGN="right">Loop Type</TD>
    <TD BGCOLOR="#eeeeee">Standalone</TD>
  </TR>

% }

<TR>
  <TH ALIGN="right">PPPoE password</TD>
  <TD>
    <INPUT TYPE      = "text"
           NAME      = "password"
           VALUE     = "<% $opt{'password'} %>"
    >
  </TD>
</TR>

<TR>
  <TH ALIGN="right">ISP Changing?</TD>
  <TD>
    <INPUT TYPE      = "checkbox"
           NAME      = "isp_chg"
           VALUE     = "Y"
           <% $opt{'isp_chg'} eq 'Y' ? 'CHECKED' : '' %>
    >
  </TD>
</TR>

<TR>
  <TH ALIGN="right">Current or Previous ISP</TD>
  <TD>
    <INPUT TYPE      = "text"
           NAME      = "isp_prev"
           VALUE     = "<% $opt{'isp_prev'} %>"
    >
  </TD>
</TR>

<INPUT TYPE="hidden" NAME="vendor_qual_id" VALUE="<% $opt{'vendor_qual_id'} %>">
<TR>
  <TH ALIGN="right">Vendor Qualification ID</TD>
  <TD BGCOLOR="#eeeeee"><% $opt{'vendor_qual_id'} %></TD>
</TR>

</TABLE>

<%init>

my %opt = @_;

#my $conf = new FS::Conf;

</%init>