58 lines
2.8 KiB
Text
58 lines
2.8 KiB
Text
<%@ taglib uri="/WEB-INF/acxent.tld" prefix="acx" %>
|
|
<%@ page language="java" import="it.acxent.jsp.*" %>
|
|
<%-- DICHIARAZIONE BEAN --%>
|
|
<jsp:useBean id="nf" scope="request" type="java.text.NumberFormat" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="df" class="it.acxent.util.SimpleDateFormat" scope="request" type="it.acxent.util.SimpleDateFormat" >
|
|
</jsp:useBean>
|
|
<jsp:useBean id="bean" class="it.acxent.cc.Attivita" type="it.acxent.cc.Attivita" scope="request" >
|
|
</jsp:useBean>
|
|
<%-- FINE DICHIARAZIONE BEAN --%>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-2 col-xs-6">
|
|
<label for="bodyBackgroundHex">Colore Body Background:</label>
|
|
<br>
|
|
<div class="input-group colorpicker">
|
|
<input name="bodyBackgroundHex" type="text" class="form-control input-sm" id="bodyBackgroundHex" value="<%=bean.getBodyBackgroundHex()%>" >
|
|
<div class="input-group-addon"> <i></i> </div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-xs-6">
|
|
<label for="topColoreHex">Colore Background:</label>
|
|
<br>
|
|
<div class="input-group colorpicker">
|
|
<input name="backgroundColorHex" type="text" class="form-control input-sm" id="backgroundColorHex" value="<%=bean.getBackgroundColorHex()%>" >
|
|
<div class="input-group-addon"> <i></i> </div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-xs-6">
|
|
<label for="topColoreHex">Colore Testo Default:</label>
|
|
<br>
|
|
<div class="input-group colorpicker">
|
|
<input name="mainTextColorHex" type="text" class="form-control input-sm" id="mainTextColorHex" value="<%=bean.getMainTextColorHex()%>" >
|
|
<div class="input-group-addon"> <i></i> </div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-2 col-xs-6">
|
|
<label for="mainSubtitleBottomBorderHex">Colore Bordo Titoli:</label>
|
|
<br>
|
|
<div class="input-group colorpicker">
|
|
<input name="mainSubtitleBottomBorderHex" type="text" class="form-control input-sm" id="mainSubtitleBottomBorderHex" value="<%=bean.getMainSubtitleBottomBorderHex()%>" >
|
|
<div class="input-group-addon"> <i></i> </div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-4 col-xs-12">
|
|
<label for="recap">Chiave reCAPTCHA V2 <i class="fa fa-info-circle" title='Abilita "Non Sono Un robot" sui form dei contatti e ricerca prodotti'></i>:</label>
|
|
<br>
|
|
<input name="recaptchaV2Key" type="text" class="form-control input-sm" id="recaptchaV2Key" value="<%=bean.getRecaptchaV2Key()%>" >
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-lg-12 col-xs-12">
|
|
<label for="descrizioneAttivita">Testo "Chi Siamo" (<%=bean.getCurrentLang()%>):</label>
|
|
<br>
|
|
<textarea rows="4" type="text" class="form-control input-sm ckeditor" name="descrizioneAttivita_<%=bean.getCurrentLang()%>" id="descrizioneAttivita_<%=bean.getCurrentLang()%>"><%=bean.getDescrizioneAttivita(bean.getCurrentLang())%></textarea>
|
|
</div>
|
|
</div>
|