summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/forms/ConfirmDeleteAccount.php
blob: b82bf0bd7de385e0339b05f2d0833e12de11478b (plain) (blame)
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
<?php

class dev_Form_ConfirmDeleteAccount extends Zend_Form
{

	public function init()
	{
		$this->setName("ConfirmDeleteAccount");
		$this->setMethod('post');
			
		$this->addElement('submit', 'confirmdelete', array(
            'required' => false,
            'ignore'   => true,
            'label'    => 'Confirm',
		));

		$this->addElement('button', 'cancel', array(
            'required' => false,
            'ignore'   => true,
            'label'    => 'Cancel',
			'onclick'   => 'location.href="javascript:history.back();"',
		));
	}
}