-
Notifications
You must be signed in to change notification settings - Fork 6
create frequently questions page #298
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 3 commits
731d3f7
334ea29
1e3c696
8294ea1
c03c4e0
1c3cb2b
d96b006
9f5dc30
cd1b607
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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.' | ||
| ], | ||
| [ | ||
| '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' | ||
|
||
| ], | ||
| [ | ||
| '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( | ||
|
|
||
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
| 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 |
There was a problem hiding this comment.
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.