我想创建一个landingPage,我想通过jsf 2.0和Primefaces 3.5将数据保存在我的数据库中
我的页面 *.xhtml 页面如下所示:
但是,我想让它看起来像我的 HTML 页面:
除了 CSS 我的 h:inputText 应该包含一个占位符。我的代码如下所示:
<h:form class="homepage_invitee_form" action="" method="POST">
<h:inputText name="email" placeholder="Email Address"
id="email_address_new" type="text placeholder" />
<br />
<h:inputText name="firstName" placeholder="First Name"
id="firstname_new" type="text placeholder" />
<h:inputText name="lastName" placeholder="Last Name"
id="lastname_new" type="text placeholder" />
<br />
<h:button value="Request Invitation" type="submit" class="btn btn-primary opal_btn"
id="submit_form_new" />
</h:form>
如您所见,占位符属性没有被渲染。我真的很感激任何关于如何正确渲染的想法。
更新
我的 HTML 代码如下所示:
<form class="homepage_invitee_form" action="" method="POST">
<input name="email" placeholder="Email Address" id="email_address_new" type="text placeholder"><br>
<input name="firstName" placeholder="First Name" id="firstname_new" type="text placeholder">
<input name="lastName" placeholder="Last Name" id="lastname_new" type="text placeholder"><br>
<button type="submit" class="btn btn-primary opal_btn" id="submit_form_new">Request Invitation</button>
</form>