
Here the code, I do not have a Github account:
---------------------------------
In User.scala
override def signupXhtml(user: TheUserType) = {
(<form method="post" action={S.uri}>
<table class="signUpTable">
<tr>
<td colspan="2" class="signUpBoxHeader">{ S.??("sign.up") }</td>
</tr>
{localForm(user, false, signupFields)}
<tr>
<td> </td>
<td><user:submit /></td>
</tr>
</table>
</form>)
}
----------------------------------
In snippet/MySignupSnippet.scala
object MySignupSnippet {
def render = User.signupXhtml(new User)
}
----------------------------------
In signup.html
<div class="lift:MySignupSnippet"></div>
----------------------------------
That's all... The problem - as described - is, that all fields for signup routine (First-, Lastname, Email, PW, Locales, Timezone) are displayed as expected, but the Submit-Button is not there (see screenshot). Also when I try to confirm the fields by pressing Enter, the browser reloads but I am not redirected to the expected site and there is no new user in the database. I read a lot in Google groups and other sources, but I found nothing relating to my problem. I'm also new to Lift and Scala, so I haven't found any possibility to build a workaround... If you (or anybody other) has any idea how to solve this problem - I'd be very thankful!
Greets, Matthias