mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
initial commit
This commit is contained in:
32
apps/atlbiomed/modules/security/templates/indexSuccess.php
Executable file
32
apps/atlbiomed/modules/security/templates/indexSuccess.php
Executable file
@ -0,0 +1,32 @@
|
||||
<?php use_helper('Validation') ?>
|
||||
<?php echo form_tag('security/index'); ?>
|
||||
<div class="loginForm">
|
||||
<div class="loginFormInner">
|
||||
<?php echo form_error('username') ?><br />
|
||||
<?php echo form_error('password') ?><br />
|
||||
<fieldset >
|
||||
<legend>Please Log In</legend>
|
||||
<div class="loginFormInnerRow">
|
||||
<div>
|
||||
<label for="username">Username:</label>
|
||||
</div>
|
||||
<div>
|
||||
<?php echo input_tag('username'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="loginFormInnerRow">
|
||||
<div>
|
||||
<label for="password">Password:</label>
|
||||
</div>
|
||||
<div>
|
||||
<?php echo input_password_tag('password'); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="loginFormInnerRow">
|
||||
<div></div>
|
||||
<div><?php echo submit_tag('Login'); ?></div>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
6
apps/atlbiomed/modules/security/templates/secureSuccess.php
Executable file
6
apps/atlbiomed/modules/security/templates/secureSuccess.php
Executable file
@ -0,0 +1,6 @@
|
||||
<div class="secureModuleMain">
|
||||
<div class="secureModuleMessage">
|
||||
<?php echo image_tag('lock48'); ?>
|
||||
<div>You are not authorized to view this page. Click <?php echo link_to('here', 'security/logout'); ?> to return to the application.</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user