I am putting together a register page for my shop
I have gotten ridden of the fax field but tried to replace with a field for Steam ID
I have the text box there but not the text next to the field saying Steam ID
To see what I am talking about - http://gameshopau.com/index.php?route=account/register
For the steps I took I followed - http://cartadvisor.com/blog/2014/05/22/ ... tion-form/
Here is the code from my register.tpl
Code: Select all
<div class="form-group">
<label class="col-sm-2 control-label" for="input-steam_id"><?php echo $steam_id; ?></label>
<div class="col-sm-10">
<input type="text" name="steam_id" value="<?php echo $steam_id; ?>" placeholder="<?php echo $steam_id; ?>" id="input-steam_id" class="form-control" />
</div>
Code: Select all
if (isset($this->request->post['steam_id'])) {
$data['steam_id'] = $this->request->post['steam_id'];
} else {
$data['steam_id'] = '';
}

Any help you guys could give me would be awesome
Thanks