ChrisBAshton/smartresolution

View on GitHub
webapp/core/view/profile_edit--organisation.html

Summary

Maintainability
Test Coverage
<h1>Edit Profile</h1>

<p>
    View your profile: <?php echo $account; ?>
</p>

<form method="post">

    <label for="description">Description</label>
    <em>This can be written in markdown format and automatically converted to HTML.</em>
    <textarea class="form-control" name="description" id="description"><?php echo $account->getRawDescription(); ?></textarea>

    <button class="btn btn-lg btn-primary" type="submit">Update Profile</button>

</form>