Skip to content

Commit

Permalink
Dev: Replace __plugin with plugin in view (CintLink)
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Jul 27, 2016
1 parent 9b301ca commit bc9165e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/core/plugins/CintLink/views/loginform.php
@@ -1,24 +1,24 @@
<form id='cintlink-login-form' class='form-horizontal'>
<div class='col-sm-4'></div>
<div class='col-sm-8'>
<p class='help-block'><?php echo $__plugin->gT("Log in to your limesurvey.org account to buy participants."); ?></p>
<p class='help-block'><?php echo $plugin->gT("Log in to your limesurvey.org account to buy participants."); ?></p>
</div>
<div class='form-group'>
<label class='control-label col-sm-4'><?php echo $__plugin->gT("Username:"); ?></label>
<label class='control-label col-sm-4'><?php echo $plugin->gT("Username:"); ?></label>
<div class='col-sm-4'>
<input class='form-control' type='text' name='username' />
</div>
</div>
<div class='form-group'>
<label class='control-label col-sm-4'><?php echo $__plugin->gT("Password:"); ?></label>
<label class='control-label col-sm-4'><?php echo $plugin->gT("Password:"); ?></label>
<div class='col-sm-4'>
<input class='form-control' type='password' name='password' />
</div>
</div>
<div class='form-group'>
<div class='col-sm-4'></div>
<div class='col-sm-4'>
<input id='cintlink-login-submit' class='btn btn-default' type='submit' value='<?php echo $__plugin->gT('Log in'); ?>' />
<input id='cintlink-login-submit' class='btn btn-default' type='submit' value='<?php echo $plugin->gT('Log in'); ?>' />
</div>
</div>
</form>

0 comments on commit bc9165e

Please sign in to comment.