update project with new architecture

This commit is contained in:
2023-04-13 07:46:35 +02:00
parent d0a3b10cfe
commit 67a02c33a2
333 changed files with 3764 additions and 1254 deletions

View File

@@ -0,0 +1,13 @@
<form data-formmaildigit="{{info.urlpost}}"
data-auth="{{info.auth}}"
data-uuid="{{info.uuid}}"
data-tribeid="{{info.tribeid}}"
data-msgok="{{info.msgok}}"
data-msgko="{{info.msgko}}" >
{{{info.header}}}
<div class="input-group">
{{{content}}}
</div>
<p class="msgform"></p>
{{{info.footer}}}
</form>

View File

@@ -0,0 +1,33 @@
<div class="form-group">
{{#desc}}
<label for="{{idhtml}}{{id}}">{{desc}}</label>
{{/desc}}
<input type="{{type}}"
class="form-control"
data-champs="{{id}}"
data-check="{{check}}"
data-msgerreur="{{msgerreur}}"
id="{{idhtml}}{{id}}"
aria-describedby="Help{{idhtml}}"
placeholder="{{placehoder}}"
value="{{value}}" />
{{#btnactionInput}}
<div class="input-group-append">
<span class="input-group-btn">
<button class="btn btn-primary {{btnactionInput}}" type="button">
{{btndesc}}
</button>
</span>
</div>
{{/btnactionInput}}
{{#aide}}
<small class="form-text text-muted">
{{aide}}
</small>
{{/aide}}
</div>