-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
38 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
<?php $this->load->library('form_validation'); ?> | ||
<?php echo validation_errors(); ?> | ||
<?php echo form_open('tweet'); ?> | ||
|
||
<h2><?php echo $title; ?></h2> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-2 col-md-offset-5"> | ||
<h5>Tweet</h5> | ||
<input type="text" name="tweet" value="<?php echo set_value('tweet'); ?>" size="50" /> | ||
<?php echo form_error('tweet'); ?> | ||
<!--<input type="hidden" name="user_id" value="<?php echo 'id' // USER ID HERE for tweet creation ?>"/>--> | ||
<div><input class="btn" type="submit" value="Submit"/></div> | ||
</div> | ||
</div> | ||
</div> | ||
<h5>Tweet</h5> | ||
<input type="text" name="tweet" value="<?php echo set_value('tweet'); ?>" size="50" /> | ||
<?php echo form_error('tweet'); ?> | ||
<!--<input type="hidden" name="user_id" value="<?php echo 'id' // USER ID HERE for tweet creation ?>"/>--> | ||
<div><input type="submit" value="Submit"/></div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters