Initial commit
This commit is contained in:
17
includes/main/profile_edit.php
Normal file
17
includes/main/profile_edit.php
Normal file
@ -0,0 +1,17 @@
|
||||
<h1>{locale:profile_edit}: <?=$userData['userPublicName']?></h1>
|
||||
|
||||
<form action="<?=get_current_link()?>" method="post" name="edit-profile">
|
||||
|
||||
<h3>{locale:contact}</h3>
|
||||
<input type="text" name="userPublicName" value="<?=$userData['userPublicName']?>" placeholder="{locale:public_name}" maxlength="50" />
|
||||
<input type="text" name="userRealName" value="<?=$userData['userRealName']?>" placeholder="{locale:name}" maxlength="50" />
|
||||
<input type="text" name="userEmail" value="<?=$userData['userEmail']?>" placeholder="{locale:email}" maxlength="50" />
|
||||
<input type="text" name="userWeb" value="<?=$userData['userWeb']?>" placeholder="{locale:web}" maxlength="50" />
|
||||
|
||||
|
||||
<h3>{locale:introduction}</h3>
|
||||
<textarea name="userIntroduction" maxlength="320"><?=htmlentities($userData['userIntroduction'])?></textarea>
|
||||
|
||||
<button type="submit" name="userEdit">{locale:save}</button>
|
||||
|
||||
</form>
|
Reference in New Issue
Block a user