diff options
author | raylu <raylu@mixpanel.com> | 2011-07-02 16:51:32 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-02 16:51:32 -0700 |
commit | 83483a1826d1d05e2f9733746f35fef1939b8c0a (patch) | |
tree | a2c382bfc4e3f5b8554604f0595e51119547fa43 /views/Users | |
parent | 495e795089e2839474a653733dd0adf2c6c43105 (diff) | |
download | otakuhub-83483a1826d1d05e2f9733746f35fef1939b8c0a.tar.xz |
lowercase
Diffstat (limited to 'views/Users')
-rw-r--r-- | views/Users/Photos/index.html.php | 7 | ||||
-rw-r--r-- | views/Users/confirm.html.php | 1 | ||||
-rw-r--r-- | views/Users/feed.html.php | 49 | ||||
-rw-r--r-- | views/Users/index.html.php | 12 | ||||
-rw-r--r-- | views/Users/login.html.php | 7 | ||||
-rw-r--r-- | views/Users/logintest.html.php | 1 | ||||
-rw-r--r-- | views/Users/openid.html.php | 4 | ||||
-rw-r--r-- | views/Users/post.html.php | 3 | ||||
-rw-r--r-- | views/Users/profile.html.php | 9 | ||||
-rw-r--r-- | views/Users/signup.html.php | 14 | ||||
-rw-r--r-- | views/Users/step2.html.php | 12 | ||||
-rw-r--r-- | views/Users/test.html.php | 0 |
12 files changed, 0 insertions, 119 deletions
diff --git a/views/Users/Photos/index.html.php b/views/Users/Photos/index.html.php deleted file mode 100644 index ba0fd60..0000000 --- a/views/Users/Photos/index.html.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php if (count($photo) == 0): ?> -<?= $this->html->link("photo::add", "Add a photo"); ?> -<?php else: ?> -<?php foreach($photo as $photos): ?> -<img src="$photo" ?> -<?php endforeach; ?> -<?php endif; ?>
\ No newline at end of file diff --git a/views/Users/confirm.html.php b/views/Users/confirm.html.php deleted file mode 100644 index cd0a6a7..0000000 --- a/views/Users/confirm.html.php +++ /dev/null @@ -1 +0,0 @@ -<p>Thanks for signing up. Please check your email to confirm your registration. If you lost you key click <a href = "/signup/reconfirm">here </a> to have it resent</p> diff --git a/views/Users/feed.html.php b/views/Users/feed.html.php deleted file mode 100644 index 142fe7a..0000000 --- a/views/Users/feed.html.php +++ /dev/null @@ -1,49 +0,0 @@ -<!-- page container --> -<!-- page title --> -<h2 class="ribbon blue full" ><?= $user->username ?>'s Feed <span>Here's what's poppin'</span> </h2> -<div class="triangle-ribbon blue" ></div> -<br class="cl" > - <!-- sidebar --> - <aside> - <ul class="sidebar-nav" > - <li class="first current" ><a href="#" >Feed</a></li> - <li class="" ><a href="#" >Direct Message</a></li> - </ul> - </aside> - <!-- Page Content --> - -<div id="page-content" class="two-col container_12" > -<?= $this->form->create(null, array('action' => 'post')); ?> - <?= $this->form->field('body', array('type' => 'textarea')); ?> - <?= $this->form->submit('Post!', array('class' => 'button', 'style' => 'float:right')); ?> -<?= $this->form->end(); ?> -<br class ="cl"> - - <?php if(isset($feed)): ?> - <?php foreach($feed as $post): ?> - <div class="grid_4"><img class="inlinepic" src="/img/about.jpg" alt="" /></div> - <div class="grid_8"> - <h4><?= $post->username ?></h4> - <p><?php echo $post->body; ?> </p> - <h5 class="inline">Skills:</h5> - <ul class="tags"> - <li>HTML</li> - <li>CSS</li> - <li>JS/jQuery</li> - </ul> - <h5 class="inline">Social:</h5> - <ul class="social"> - <li><a href="#"><img class="tooltip" src="/img/social/16/twitter.png" title="Follow me on Twitter" alt="twitter" /></a></li> - <li><a href="#"><img class="tooltip" src="/img/social/16/facebook.png" title="My Facebook profile" alt="facebook" /></a></li> - <li><a href="#"><img class="tooltip" src="/img/social/16/linkedin.png" title="My LinkedIn profile" alt="linkedin" /></a></li> - <li><a href="#"><img class="tooltip" src="/img/social/16/skype.png" title="Call me on Skype" alt="skype" /></a></li> - </ul> - </div> - <br class="cl"> - <?php endforeach; ?> - <?php else: ?> - <p>Woops! There's no posts yet. Make some friends and get the party started!</p> - <?php endif; ?> - </div> - <br class="cl" /> - <br class="cl" />
\ No newline at end of file diff --git a/views/Users/index.html.php b/views/Users/index.html.php deleted file mode 100644 index 4705d1c..0000000 --- a/views/Users/index.html.php +++ /dev/null @@ -1,12 +0,0 @@ -<?php if (empty($users)): ?> - <h1>No Users Found!</h1> -<?php else: ?> -<?php foreach($users as $user): ?> -<user> - <h1><?=$user->username ?> </h1> - <p>Salted Password: <?=$user->password ?></p> - <p>Salt: <?=$user->salt ?></p> - <p>Joined on: <?=date('m/d/y', $user->joinedOn->sec) ?></p> -<user> -<?php endforeach; ?> -<?php endif; ?>
\ No newline at end of file diff --git a/views/Users/login.html.php b/views/Users/login.html.php deleted file mode 100644 index 0bfb2c5..0000000 --- a/views/Users/login.html.php +++ /dev/null @@ -1,7 +0,0 @@ -<?=$this->flashMessage->output(); ?> -<?=$this->form->create(); ?> - <?=$this->form->field('username'); ?> - <?=$this->form->field('password', array('type' => 'password')); ?> - <?=$this->form->field('remember', array('type' => 'checkbox')); ?> - <?=$this->form->submit('Login!'); ?> -<?=$this->form->end(); ?>
\ No newline at end of file diff --git a/views/Users/logintest.html.php b/views/Users/logintest.html.php deleted file mode 100644 index f1f91c4..0000000 --- a/views/Users/logintest.html.php +++ /dev/null @@ -1 +0,0 @@ -<?= var_dump($data); ?>
\ No newline at end of file diff --git a/views/Users/openid.html.php b/views/Users/openid.html.php deleted file mode 100644 index 9a6e588..0000000 --- a/views/Users/openid.html.php +++ /dev/null @@ -1,4 +0,0 @@ -<?= $this->form->create(); ?> - <?= $this->form->field('identity', array('type' => 'text')); ?> - <?= $this->form->submit('Login'); ?> -<?= $this->form->end(); ?>
\ No newline at end of file diff --git a/views/Users/post.html.php b/views/Users/post.html.php deleted file mode 100644 index 5f2c237..0000000 --- a/views/Users/post.html.php +++ /dev/null @@ -1,3 +0,0 @@ -<?= $this->form->create($post); ?> - <?= $this->form->field("body", array('type' => 'textarea')); ?> -<?= $this->form->end(); ?>
\ No newline at end of file diff --git a/views/Users/profile.html.php b/views/Users/profile.html.php deleted file mode 100644 index a29304d..0000000 --- a/views/Users/profile.html.php +++ /dev/null @@ -1,9 +0,0 @@ -<h1><?=$user->name; ?></h1> -<?= $this->form->create($photo, array('type' => 'file')); ?> - <?php if($photo->exists()): ?> - <?= $this->form->label("This is you"); ?> - <?php else: ?> - <p>Upload a photo</p> - <?= $this->form->field('file', array('type' => 'file')); ?> - <?php endif; ?> -<?= $this->form->end(); ?>
\ No newline at end of file diff --git a/views/Users/signup.html.php b/views/Users/signup.html.php deleted file mode 100644 index 4112bdd..0000000 --- a/views/Users/signup.html.php +++ /dev/null @@ -1,14 +0,0 @@ -<?php if (isset($key)): ?> -Confirmation Link: <a href="<?=$link ?>/<?=$key->key ?>"> Link </a> -<?php else: ?> -<?php if(isset($user)): ?> -<?=$this->form->create($user); ?> -<?php else: ?> -<?=$this->form->create(); ?> -<?php endif; ?> - <?=$this->form->field('username'); ?> - <?=$this->form->field('newpass', array('type' => 'password', 'label' => 'password')); ?> - <?=$this->form->field('email'); ?> - <?=$this->form->submit('Signup!'); ?> -<?=$this->form->end(); ?> -<?php endif; ?>
\ No newline at end of file diff --git a/views/Users/step2.html.php b/views/Users/step2.html.php deleted file mode 100644 index dfdcffa..0000000 --- a/views/Users/step2.html.php +++ /dev/null @@ -1,12 +0,0 @@ -<?=$this->flashMessage->output(); ?> -<?=$this->form->create(); ?> - <?=$this->form->field('Name'); ?> - <!-- put a label here --> - <?=$this->form->text("What's your birthday>"); ?> - <?=$this->form->field('day', array('type' => 'text')); ?> - <?=$this->form->field('month', array('type' => 'text')); ?> - <?=$this->form->field('year', array('type' => 'text')); ?> - <?=$this->form->field('location', array('type' => 'text')) ?> - <?=$this->form->select('gender', array('Male' => 'Male', 'Female' => 'Female')); ?> - <?=$this->form->submit('Create my account!'); ?> -<?=$this->form->end(); ?>
\ No newline at end of file diff --git a/views/Users/test.html.php b/views/Users/test.html.php deleted file mode 100644 index e69de29..0000000 --- a/views/Users/test.html.php +++ /dev/null |