Changeset 37
- Timestamp:
- 04/10/07 04:02:42
- Files:
-
- FreakAuth/trunk/www/system/application/controllers/admin/example.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/activation_failed.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/activation_success.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/change_password.php (modified) (2 diffs)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password.php (modified) (2 diffs)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_reset_failed.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_reset_success.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_success.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/login.php (modified) (3 diffs)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/register.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/register_success.php (modified) (1 diff)
- FreakAuth/trunk/www/system/application/views/FreakAuth_light/template_admin/header.php (modified) (1 diff)
- FreakAuth/trunk/www/system/language/english/freakauth_lang.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
FreakAuth/trunk/www/system/application/controllers/admin/example.php
r27 r37 89 89 $data['heading']='Admin Console home'; 90 90 $data['action']='Just an example'; 91 $data['content']="<p>You can view this because yo are a super admin</p>";91 $data['content']="<p>You can view this because you are a super admin</p>"; 92 92 93 93 FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/activation_failed.php
r36 r37 1 1 <?=$this->lang->line('FAL_activation_failed_message');?> 2 < BR/>2 <br /> 3 3 <?=anchor($this->config->item('FAL_activation_continue_action'), $this->lang->line('FAL_continue_label'))?> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/activation_success.php
r36 r37 1 1 <?=$this->lang->line('FAL_activation_success_message');?> 2 < BR/>2 <br /> 3 3 <?=anchor($this->config->item('FAL_activation_continue_action'), $this->lang->line('FAL_continue_label'))?> 4 4 FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/change_password.php
r2 r37 10 10 'size'=>'30', 11 11 'value'=>(isset($this->validation) ? $this->validation->{'user_name'} : '')))?> 12 < /label><span><?=(isset($this->validation) ? $this->validation->{'user_name'.'_error'} : '')?></span>12 <span><?=(isset($this->validation) ? $this->validation->{'user_name'.'_error'} : '')?></span> 13 13 </p> 14 14 … … 39 39 <input type="submit" name="Submit" value="Submit" class="submit"/> 40 40 <input type="reset" name="Reset" value="reset" /> 41 </form> 41 42 </fieldset> 42 </form>43 43 </div> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password.php
r20 r37 1 <h2>Forgotten Password</h2> 1 <fieldset> 2 <legend><?=$heading?></legend> 2 3 <?=form_open('auth/forgotten_password')?> 3 4 <p><label for="email"><?=$this->lang->line('FAL_user_email_label')?>:</label> … … 22 23 <?php }?> 23 24 <!-- END CAPTCHA (security image)--> 24 < P><?=form_submit(array('name'=>'submit',25 <p><?=form_submit(array('name'=>'submit', 25 26 26 27 'value'=>$this->lang->line('FAL_submit_label')))?> 27 28 </p> 28 29 <?=form_close()?> 30 </fieldset> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_reset_failed.php
r36 r37 1 1 <?=$this->lang->line('FAL_forgotten_password_reset_failed_message');?> 2 < BR/>2 <br /> 3 3 <?=anchor($this->config->item('FAL_forgotten_password_reset_continue_action'), $this->lang->line('FAL_continue_label'))?> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_reset_success.php
r36 r37 1 1 <?=$this->lang->line('FAL_forgotten_password_reset_success_message');?> 2 < BR/>3 < BR/>2 <br /> 3 <br /> 4 4 <?=anchor($this->config->item('FAL_forgotten_password_reset_continue_action'), $this->lang->line('FAL_continue_label'))?> 5 5 FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/forgotten_password_success.php
r36 r37 1 1 <?=$this->lang->line('FAL_forgotten_password_success_message');?> 2 < BR/>3 < BR/>2 <br /> 3 <br /> 4 4 <?=anchor($this->config->item('FAL_forgotten_password_reset_continue_action'), $this->lang->line('FAL_continue_label'))?> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/login.php
r20 r37 2 2 <?=form_open('auth/')?> 3 3 <!--USERNAME--> 4 <p><label for="user_name"><?=$this->lang->line('FAL_user_name_label')?>:</label> </span>4 <p><label for="user_name"><?=$this->lang->line('FAL_user_name_label')?>:</label> 5 5 <?=form_input(array('name'=>'user_name', 6 6 'id'=>'user_name', … … 19 19 20 20 <span><?=(isset($this->validation) ? $this->validation->{'password'.'_error'} : '')?></span> 21 <span class= note><?=anchor('auth/forgotten_password', $this->lang->line('FAL_forgotten_password_label'))?></span></p>21 <span class="note"><?=anchor('auth/forgotten_password', $this->lang->line('FAL_forgotten_password_label'))?></span></p> 22 22 <!--CAPTCHA (security image)--> 23 23 <?php … … 35 35 <!-- END CAPTCHA (security image)--> 36 36 37 37 <p><label> 38 38 <?=form_submit(array('name'=>'login', 39 39 'id'=>'login', 40 40 'value'=>$this->lang->line('FAL_login_label')))?> 41 </label></p> 41 42 <?php 42 43 if ($this->config->item('FAL_allow_user_registration')) FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/register.php
r20 r37 72 72 $callConfirm = 'confirmDecline();'; 73 73 ?> 74 <textarea name='rules' class='textarea' rows='8' cols='50' readonly> 74 <p><textarea name="rules" class="textarea" rows="8" cols="50" readonly="readonly"> 75 </p> 75 76 <?=$this->lang->line('FAL_terms_of_service_message')?> 76 77 </textarea> FreakAuth/trunk/www/system/application/views/FreakAuth_light/content/register_success.php
r36 r37 1 1 <?=$this->lang->line('FAL_register_sucess_message');?> 2 < BR/>2 <br /> 3 3 <?=anchor($this->config->item('FAL_register_continue_action'), $this->lang->line('FAL_continue_label'))?> FreakAuth/trunk/www/system/application/views/FreakAuth_light/template_admin/header.php
r2 r37 2 2 <html> 3 3 <head> 4 <title>FreakAuth Administration Console » <?=$heading;?></title>4 <title>FreakAuth Administration Console » <?=$heading;?></title> 5 5 6 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> FreakAuth/trunk/www/system/language/english/freakauth_lang.php
r21 r37 48 48 $lang['FAL_register_cancel_confirm'] = 'Are you sure you want to decline the Terms of Service? Click Cancel to continue with registration.'; 49 49 50 $lang['FAL_register_success_message'] = 'Thank You!< BR/>Your registration has been successfully completed.<BR/><BR/>You have just been sent an email containing membership activation instructions.<BR/>';50 $lang['FAL_register_success_message'] = 'Thank You!<br />Your registration has been successfully completed.<br /><br />You have just been sent an email containing membership activation instructions.<br />'; 51 51 52 52 $lang['FAL_invalid_register_message'] = 'Invalid registration attempt.';
