Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 42 additions & 2 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,48 @@
'comment' => "A simple and complete solution. It speeds up processes and can eliminate the use of paper. We integrated it with our public management system or e-Cidade, it was absurdly good. Congratulations.",
'author' => 'Igor Afonso Oliveira Ruas'
],


],
'frequentlyQuestions' => [
[
'question' => 'Why LibreSign?',
'answer' => 'LibreSign allows documents to be signed securely and with legal validity, since the system generates hashing - an algorithm that ensures that the file has not been altered after being signed - as well as numbers and records the times of each signature carried out in the document. In this way, the system meets all the requirements of the GDPR - General Data Protection Law.'
],
[
'question' => 'What is electronic signature capture?',
'answer' => 'Electronic signature capture is a technology for signing electronic document files with a handwritten signature. The use of this technology allows for the elimination of the mailing, storage, filing, copying, and retrieval of paper documents. This will save your business time and money.'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds a bit strange this question. I suggest to remove for now. Sounds like a question generated by an AI.

],
[
'question' => 'What are the key features of LibreCode signature pads?',
'answer' => 'File Creation, Signature with Digital Certificate, Signature Management, Document Management, Validation, API'
],
[
'question' => 'what are the payment methods?',
'answer' => 'Credit card and Pix'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We haven't support to Pix for now.

],
[
'question' => 'Is a digital signature the same as a digitized signature?',
'answer' => 'No. The digitized signature is the reproduction of the handwritten signature as an image using scanner-type. It does not guarantee the authorship and of the electronic document, as there is no association between the signer and the text, as it can be easily copied and inserted another document.'
],
[
'question' => 'What is the name of the company that LibreSign was developed by?',
'answer' => 'LibreCode, a Brazilian cooperative of free software developers.'
],
[
'question' => 'Does the plan have any kind of loyalty?',
'answer' => 'You are free to cancel your plan at any time. By canceling, Signater undertakes not to renew the billing for your plan.'
],
[
'question' => 'What happens if I cancel my plan?',
'answer' => 'Yes, at any time. After canceling, you will no longer be charged and there will be no automatic renewal.'
],
[
'question' => 'Can I use my personal digital certificate to sign documents?',
'answer' => 'Yes. You can store your digital certificate in LibreSign and when you sign a document you will be asked for your password.'
],
[
'question' => 'Do I need a digital certificate to sign documents?',
'answer' => 'No. LibreSign creates a digital certificate for each user who does not have a personal digital certificate.'
],
],
'getFromCategory' => function($page, $category) {
$files = array_merge(
Expand Down
15 changes: 13 additions & 2 deletions lang/en/main.json

Large diffs are not rendered by default.

29 changes: 20 additions & 9 deletions lang/fr/main.json

Large diffs are not rendered by default.

29 changes: 20 additions & 9 deletions lang/nb-NO/main.json

Large diffs are not rendered by default.

29 changes: 20 additions & 9 deletions lang/pt-BR/main.json

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions source/_layouts/footer.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@
<li>
<a href="{{ $page->baseUrl }}#about">{{ $page->t("About")}}</a>
</li>
<li>
<a href="{{ $page->baseUrl }}frequently-questions">{{ $page->t("FAQ")}}</a>
</li>
</ul>
</div>
</div>
Expand Down
57 changes: 57 additions & 0 deletions source/frequently-questions.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
@extends('_layouts.main')

@section('body')
<section class="ud-hero" id="home">
<div class="container">
<div class="row">
<div class="col-lg-12">
</div>
</div>
</div>
</section>

<section id="faq" class="ud-faq">
<div class="shape">
<img src="{{ $page->baseUrl }}assets/images/faq/shape.svg" alt="shape" />
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<span>FAQ</span>
<h2>{{ $page->t("Any Questions? Answered")}}</h2>
<p>
{{ $page->t("LibreSign frequently asked questions")}}
</p>
</div>
</div>
</div>

<div class="row">
@foreach($page->frequentlyQuestions as $item => $faq)
<div class="col-lg-6">
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".1s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>{{ $page->t($faq->question)}}</span>
</button>
<div id="collapseOne" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t($faq->answer)}}
</div>
</div>
</div>
</div>
</div>
@endforeach
</div>
</div>
</section>
@endsection
151 changes: 0 additions & 151 deletions source/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,156 +202,5 @@ class="shape shape-2"
</section>
<!-- ====== End Importance of digital signature ====== -->

<!-- ====== FAQ Start ====== -->
<section id="faq" class="ud-faq">
<div class="shape">
<img src="{{ $page->baseUrl }}assets/images/faq/shape.svg" alt="shape" />
</div>
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="ud-section-title text-center mx-auto">
<span>FAQ</span>
<h2>{{ $page->t("Any Questions? Answered")}}</h2>
<p>
{{ $page->t("LibreSign frequently asked questions")}}
</p>
</div>
</div>
</div>

<div class="row">
<div class="col-lg-6">
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".1s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseOne"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>{{ $page->t("Why LibreSign?")}}</span>
</button>
<div id="collapseOne" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t("LibreSign allows documents to be signed securely and with legal validity, since the system generates hashing - an algorithm that ensures that the file has not been altered after being signed - as well as numbers and records the times of each signature carried out in the document. In this way, the system meets all the requirements of the GDPR - General Data Protection Law.")}}
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".15s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseTwo"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>{{ $page->t("What is electronic signature capture?")}}</span>
</button>
<div id="collapseTwo" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t("Electronic signature capture is a technology for signing electronic document files with a handwritten signature. The use of this technology allows for the elimination of the mailing, storage, filing, copying, and retrieval of paper documents. This will save your business time and money.")}}
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".2s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseThree"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>
{{ $page->t("What are the key features of LibreCode signature pads?")}}
</span>
</button>
<div id="collapseThree" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t("File Creation, Signature with Digital Certificate, Signature Management, Document Management, Validation, API")}}
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".1s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseFour"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>
{{ $page->t("Is a digital signature the same as a digitized signature?")}}
</span>
</button>
<div id="collapseFour" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t("No. The digitized signature is the reproduction of the handwritten signature as an image using scanner-type. It does not guarantee the authorship and of the electronic document, as there is no association between the signer and the text, as it can be easily copied and inserted another document.")}}
</div>
</div>
</div>
</div>
<div class="ud-single-faq wow fadeInUp" data-aos-delay=".15s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseFive"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>
{{ $page->t("What is the name of the company that LibreSign was developed by?")}}
</span>
</button>
<div id="collapseFive" class="accordion-collapse collapse">
<div class="ud-faq-body">
{{ $page->t("LibreCode, a Brazilian cooperative of free software developers.")}}
</div>
</div>
</div>
</div>
{{-- <div class="ud-single-faq wow fadeInUp" data-aos-delay=".2s">
<div class="accordion">
<button
class="ud-faq-btn collapsed"
data-bs-toggle="collapse"
data-bs-target="#collapseSix"
>
<span class="icon flex-shrink-0">
<i class="lni lni-chevron-down"></i>
</span>
<span>Where and how to host this template?</span>
</button>
<div id="collapseSix" class="accordion-collapse collapse">
<div class="ud-faq-body">
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.
</div>
</div>
</div>
</div> --}}
</div>
</div>
</div>
</section>
<!-- ====== FAQ End ====== -->
@include('_partials/contact_form')
@endsection