PHP Classes

File: app/views/profile/index.php

Recommend this page to a friend!
  Classes of Oleg Lunegov   MicroPHP Framework   app/views/profile/index.php   Download  
File: app/views/profile/index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: MicroPHP Framework
MVC framework for Web or command line applications
Author: By
Last change: Update of app/views/profile/index.php
Date: 2 months ago
Size: 574 bytes
 

Contents

Class file image Download
<?php /** @var \App\Models\User $user */ ?>

    <h1>?????? ??????? (<?= $user->login; ?>)
        <small><?= $user->fio; ?></small>
    </h1>

<?= \Micro\Web\Html\Html::beginForm('', 'post', ['name' => 'Setup_form']) ?>
<p><label for="Setup_fio">???</label><input id="Setup_fio" type="text" name="Setup[fio]"/></p>

    <p><label for="Setup_pass">????? ??????</label><input id="Setup_pass" type="password" name="Setup[pass]"/></p>

    <p><?= \Micro\Web\Html\Html::submitButton('????????') ?></p>
<?= \Micro\Web\Html\Html::endForm();