1. Список говнокодов пользователя scribe

    Всего: 1

  2. PHP / Говнокод #21874

    −19

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    38. 38
    39. 39
    40. 40
    41. 41
    42. 42
    43. 43
    44. 44
    45. 45
    46. 46
    47. 47
    echo '<!DOCTYPE HTML>
    <html>
    <head>
    	<meta charset = "UTF-8">
    	<title>Авторизация</title>
    	<link rel="shortcut icon" href="';
    	echo Power::url( 'images/favicon.png' );
    	echo '" type="image/x-icon" />
    	<link rel="stylesheet" href="';
    	echo Power::url( 'themes/admin/login.css' );
    	echo '" type="text/css" />
    </head>
    <body>
    	';
    	echo '<s';
    	echo 'ection id="loginBox">
    		';
    
    	$form = $this->beginWidget( 'CActiveForm' );
    	echo '		<div class="field">
    			';
    	echo $form->textField( $post, 'username', array( 'placeholder' => 'Логин' ) );
    	echo '			';
    	echo $form->error( $post, 'username', array( 'class' => 'errorPopup' ) );
    	echo '		</div>
    		<div class="field">
    			';
    	echo $form->passwordField( $post, 'password', array( 'placeholder' => 'Пароль' ) );
    	echo '			';
    	echo $form->error( $post, 'password', array( 'class' => 'errorPopup' ) );
    	echo '		</div>
    		<div class="field">
    			';
    	echo $form->textField( $post, 'captcha', array( 'placeholder' => 'Код с картинки' ) );
    	echo '			';
    	$this->widget( 'CCaptcha', array( 'showRefreshButton' => false, 'clickableImage' => true ) );
    	echo '			';
    	echo $form->error( $post, 'captcha', array( 'class' => 'errorPopup' ) );
    	echo '		</div>
    		<div class="button">';
    	echo CHtml::submitbutton( 'Авторизоваться', array( 'class' => 'button' ) );
    	echo '</div>
    		';
    	$this->endWidget(  );
    	echo '	</section>
    </body>
    </html>';

    Админка

    scribe, 20 Декабря 2016

    Комментарии (33)