Skip to content
Snippets Groups Projects
Commit c1ee813f authored by Graham Cole's avatar Graham Cole
Browse files

I did something stupid here, though it still worked in most cases. Here's what I actually meant

parent ea8d451d
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
<div class="box" >
<div class="boxhead"><h2>User Settings</h2></div>
<div class="boxcontent">
<form class="admin" action="{$path}" method="POST">
<form class="admin" action="{$baseurl}{$path}" method="POST">
<fieldset>
<legend> System Details </legend>
......@@ -40,7 +40,7 @@
<span class="textinput" id="hackergotchi">
{if $hackergotchi}
<img src="{$baseurl}/pictures/people/{$session->username}.png" />
<form action="{$self}" method="post">
<form action="{$baseurl}{$path}" method="post">
<input type="hidden" name="action" value="clearhackergotchi" />
<input type="submit" value="Clear Hackergotchi" />
</form>
......@@ -53,7 +53,7 @@
</div>
<form method="post" action="{$self}" enctype="multipart/form-data">
<form method="post" action="{$baseurl}{$path}" enctype="multipart/form-data">
<div class="row">
<label>Update Hackergotchi:</label>
<span class="textinput">
......@@ -70,7 +70,7 @@
</form>
</fieldset>
<form method="post" action="{$self}">
<form method="post" action="{$baseurl}{$path}">
<fieldset>
<legend> Password </legend>
<input type="hidden" name="action" value="changepass" />
......@@ -102,7 +102,7 @@
</fieldset>
</form>
<form method="post" action="{$self}">
<form method="post" action="{$baseurl}{$path}">
<fieldset>
<legend> Contact Details </legend>
<input type="hidden" name="action" value="changecontact" />
......@@ -131,7 +131,7 @@
</fieldset>
</form>
<form method="post" action="{$self}">
<form method="post" action="{$baseurl}{$path}">
<fieldset>
<legend> Room Network Configuration </legend>
<input type="hidden" name="action" value="changeguestnet" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment