Editing the Log In form
Using Jamroom
Go to your "Account Settings" logged in as the master admin, then click on the "Form Designer" button, the select the "user/signup" selection from the drop down field at the top right.
Hope this helps!
{if isset($_conf.jrMediaPro_require_images) && $_conf.jrMediaPro_require_images == 'on'}
{jrCore_list module="jrAudio" order_by="_item_id numerical_desc" quota_id=$_conf.jrMediaPro_artist_quota search1="profile_active = 1" template="index_top_singles_rating_row.tpl" require_image="audio_image" pagebreak="6" page=$_post.p}
{else}
{jrCore_list module="jrAudio" order_by="_item_id numerical_desc" search1="profile_active = 1" quota_id=$_conf.jrMediaPro_artist_quota template="index_top_singles_rating_row.tpl" pagebreak="6" page=$_post.p}
{/if}
function jrLoad(id,url,round_id,round_num) {
if (typeof url == "undefined") {
return false;
}
if (url == 'blank') {
$(id).hide();
}
else if (id == '#hidden') {
$(id).hide();
$(id).load(url);
}
else {
if (id == '#rank') {
var t = $('#rank').height();
if (t == null) {
$('#main').html('<div class="inner"><div id="rank"></div></div>');
}
}
var h = $(id).height();
if (h > 150) {
$(id).height(h);
}
$(id).fadeTo(100,0.5,function() {
$(id).html('<div style="text-align:center;padding:20px;margin:0 auto;"><img src="'+ core_system_url +'/skins/jrProJam/img/loading.gif" style="margin:15px;"><br>Loading...</div>');
$(id).load(url,function() {
var l = $(id).text();
if (l.length < 1 && id != '#player') {
$(id).html('');
}
if (h > 150) {
$(id).height('100%');
}
if (round_id && round_num > 0) {
$(id).fadeTo(100,1.00,function() {
if (jQuery.browser.msie) {
this.style.removeAttribute('filter');
}
$(round_id).corner(round_num +'px');
});
}
else {
$(id).fadeTo(100,1,function() {
if (jQuery.browser.msie) {
this.style.removeAttribute('filter');
}
});
}
})
});
}
}
{if isset($_items)}
{foreach $_items as $item}
{if $item@first || ($item@iteration % 4) == 1}
<div class="row">
{/if}
<div class="col3{if $item@last || ($item@iteration % 4) == 0} last{/if}">
<div class="p10">
{jrCore_module_function function="jrImage_display" module="jrUser" type="user_image" item_id=$item._user_id size="large" crop="portrait" class="img_scale" style="margin:0" alt="@`$item.user_name`" title="@`$item.user_name`"}<br>
<a href="{$jamroom_url}/{$item.profile_url}">@{$item.profile_url}</a>
<br>
{if $item.user_birthdate_today == 1}
<strong>{jrCore_lang module="jrBirthday" id=7 default="Today"}</strong>
{else}
{$item.user_birthdate_epoch|jrCore_date_format:"%B %e"}
{/if}
</div>
</div>
{if $item@last || ($item@iteration % 4) == 0}
</div>
{/if}
{/foreach}
{else}
<div class="item">
{jrCore_lang module="jrBirthday" id=8 default="No birthdays found"}
</div>
{/if}