/*
Program Name: PasswordApplet.java
Programmer: Joshua Howard
Date:    3/11/10

*/

import java.applet.*;
import java.awt.*;
import java.awt.event.*;

public class PasswordApplet extends Applet implements ActionListener
{

	//Declare Variables

	String strID;
	String strPassword;

	//contruct components

	Label headerLabel = new Label ("Please type your ID and Password");
	Label idLabel = new Label ("ID:");
		TextField idField = new TextField(10);
	Label pwLabel = new Label ("Password:");
		TextField pwField = new TextField(10);

	public void init()
	{
		setForeground(Color.blue);
		setBackground(Color.yellow);
		add(headerLabel);
		add(