HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/komma-mediadesign.nl/wwwroot/beheer/app/views/login/v_kms_pass_new.php
<?php 
	include DOCUMENT_ROOT.'app/views/includes/v_public_header.php'; 
	
	// button
	$sbm = new Button(array('type'=>'submit','name'=>'update_pass_submit','label'=>'Wijzigen'));
	$sbm->addClasses(array('blue'));
?>
<div id="wrapper">
	<h1>Kies een nieuw wachtwoord</h1>
	<hr />
	<form action="" method="post">
		<span class="label">Nieuw wachtwoord: *</span>
		<input type="password" name="new" value="" class="rounded" />
		
		<span class="label">Bevestig wachtwoord: *</span>
		<input type="password" name="confirm" value="" class="rounded" />
		
		<input type="hidden" name="acthash" value="<?php if(isset($_GET['sub'])) echo $_GET['sub']; ?>" class="rounded" />
		<?php 
			$sbm->display();
		?>
	</form>
</div>
<?php 
	include DOCUMENT_ROOT.'app/views/includes/v_public_footer.php'; 
?>