assign a size to svc_phone.sms_account
[freeside.git] / fs_selfservice / FS-SelfService / cgi / tktcreate.html
1 <%= $url = "$selfurl?session=$session_id;action="; ''; %>
2 <%= include('header', 'Create a ticket') %>
3
4 <%=
5 if ( $ticket_id ) {
6     $OUT .= "<B>Created ticket #$ticket_id</B>";
7 } else {
8     $OUT .= qq! 
9     <div style='font-weight: bold; color: red; margin-bottom: 6px;'> $error </div>
10     Please fill in both the subject and message
11     <br><br>
12     <FORM ACTION="$selfurl" METHOD=POST>
13     <input type="hidden" name="session" value="$session_id">
14     <input type="hidden" name="action" value="tktcreate">
15     <table>
16         <tr>
17             <td>Your e-mail address</td>
18             <td>$requestor</td>
19         </tr>
20         <tr>
21             <td>Subject</td>
22             <td><input type="text" name="subject" size="53"></td>
23         </tr>
24         <tr>
25             <td valign="top">Message</td>
26             <td><textarea name="message" rows="10" cols="60"></textarea></td>
27         </tr>
28         <tr>
29             <td></td>
30             <td><input type="submit" value="Create"></td>
31         </tr>
32     </table>
33     </form> 
34     !;
35 }
36 %>
37
38 <%= include('footer') %>