blob: 8105e41d9c5929e6d9feafa00a0474e366d4be0c (
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
|
<HTML>
<HEAD>
<TITLE>Signup successful</TITLE>
</HEAD>
<BODY BGCOLOR="#e8e8e8">
<FONT SIZE=7>Signup successful</FONT><BR><BR>
Thanks for signing up! Save this information for future reference.
<BR><BR>
Signup information for <%= $email_name %>:
<BR><BR>
<%=
if ($signup_service eq 'svc_acct' || !$signup_service ) { #just in case
$OUT .= <<END
Username: $username<BR>
Password: $password<BR>
Access number: ($ac) / $exch - $local <BR>
END
} elsif ( $signup_service eq 'svc_phone' ) {
$OUT .= <<END
<!-- Countrycode: $countrycode <BR>-->
Phone number: $phonenum<BR>
SIP Server: itsp.sip.server.name<BR>
SIP Login: $phonenum<BR>
SIP Password: $sip_password<BR>
Voicemail PIN: $pin<BR>
END
} else {
die "unknown signup service $signup_service";
}
%>
Package: <%= $pkg %><BR>
</BODY>
</HTML>
|