Mercurial > hg > LGDataverses
comparison src/main/webapp/termsofuse.xhtml @ 10:a50cf11e5178
Rewrite LGDataverse completely upgrading to dataverse4.0
| author | Zoe Hong <zhong@mpiwg-berlin.mpg.de> |
|---|---|
| date | Tue, 08 Sep 2015 17:00:21 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 9:5926d6419569 | 10:a50cf11e5178 |
|---|---|
| 1 <ui:composition xmlns="http://www.w3.org/1999/xhtml" | |
| 2 xmlns:h="http://java.sun.com/jsf/html" | |
| 3 xmlns:f="http://java.sun.com/jsf/core" | |
| 4 xmlns:ui="http://java.sun.com/jsf/facelets" | |
| 5 xmlns:p="http://primefaces.org/ui"> | |
| 6 | |
| 7 <div class="form-group col-sm-11"> | |
| 8 <label for="position" class="col-sm-3 control-label"> | |
| 9 <span data-toggle="tooltip" data-placement="auto right" class="tooltiplabel text-info" data-original-title="#{bundle['user.acccountterms.tip']}"> | |
| 10 #{bundle['user.acccountterms']} <span class="glyphicon glyphicon-asterisk text-danger" title="#{bundle.requiredField}"/> | |
| 11 </span> | |
| 12 </label> | |
| 13 <div class="col-sm-9"> | |
| 14 <div id="terms-agreement-block" class="well"> | |
| 15 <h:outputText value="#{systemConfig.applicationTermsOfUse}" escape="false"/> | |
| 16 </div> | |
| 17 <div class="checkbox"> | |
| 18 <p:selectBooleanCheckbox id="terms" required="true" requiredMessage="#{bundle['user.acccountterms.required']}"> | |
| 19 <f:validator validatorId="requiredCheckboxValidator"/> | |
| 20 </p:selectBooleanCheckbox> | |
| 21 <h:outputText value=" #{bundle['user.acccountterms.iagree']}"/> | |
| 22 <p:message for="terms" display="text" /> | |
| 23 </div> | |
| 24 </div> | |
| 25 </div> | |
| 26 </ui:composition> |
