16 lines
509 B
PHP
16 lines
509 B
PHP
<?php
|
|
%REQUIRE_LOGIN%
|
|
?>
|
|
|
|
<section>
|
|
<center><h1><?php echo " $username "; ?> </h1></center>
|
|
<form action="%CONTENT_DIR%/profile/" method="post">
|
|
<input type="text" name="name" maxlength="20" placeholder="First name"/>
|
|
<input type="text" name="email" placeholder="E-mail"/>
|
|
<input type="text" name="biography" maxlength="2000" placeholder="Describe yourself"/>
|
|
<input type="text" name="website" maxlength="127" placeholder="Website">
|
|
<button>Save Profile</button>
|
|
</form>
|
|
</section>
|
|
|