1210284Sjmallett#!/bin/sh
2232812Sjmallett# $Id: password2,v 1.6 2010/01/13 10:20:03 tom Exp $
3215990Sjmallett
4210284Sjmallett. ./setup-vars
5210284Sjmallett
6215990Sjmallett. ./setup-tempfile
7215990Sjmallett
8215990Sjmallett$DIALOG --title "INPUT BOX" --clear \
9210284Sjmallett	--insecure "$@" \
10215990Sjmallett        --passwordbox "Hi, this is an password dialog box. You can use \n
11215990Sjmallettthis to ask questions that require the user \n
12210284Sjmallettto input a string as the answer. You can \n
13215990Sjmallettinput strings of length longer than the \n
14215990Sjmallettwidth of the input box, in that case, the \n
15215990Sjmallettinput field will be automatically scrolled. \n
16215990SjmallettYou can use BACKSPACE to correct errors. \n\n
17215990SjmallettTry entering your name below:" 16 51 stupid 2> $tempfile
18232812Sjmallett
19215990Sjmallettretval=$?
20215990Sjmallett
21215990Sjmallett. ./report-tempfile
22215990Sjmallett