1217309Snwhitehorn#!/bin/sh
2217309Snwhitehorn# $Id: password2,v 1.6 2010/01/13 10:20:03 tom Exp $
3217309Snwhitehorn
4217309Snwhitehorn. ./setup-vars
5217309Snwhitehorn
6217309Snwhitehorn. ./setup-tempfile
7217309Snwhitehorn
8217309Snwhitehorn$DIALOG --title "INPUT BOX" --clear \
9217309Snwhitehorn	--insecure "$@" \
10217309Snwhitehorn        --passwordbox "Hi, this is an password dialog box. You can use \n
11217309Snwhitehornthis to ask questions that require the user \n
12217309Snwhitehornto input a string as the answer. You can \n
13217309Snwhitehorninput strings of length longer than the \n
14217309Snwhitehornwidth of the input box, in that case, the \n
15217309Snwhitehorninput field will be automatically scrolled. \n
16217309SnwhitehornYou can use BACKSPACE to correct errors. \n\n
17217309SnwhitehornTry entering your name below:" 16 51 stupid 2> $tempfile
18217309Snwhitehorn
19217309Snwhitehornretval=$?
20217309Snwhitehorn
21217309Snwhitehorn. ./report-tempfile
22