Skip to content
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

create frequently questions page #298

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"tightenco/jigsaw": "^1.7",
"gregwar/captcha": "^1.2",
"libresign/espeak": "dev-main",
"elaborate-code/jigsaw-localization": "dev-fix/use-package-default-locale",
"elaborate-code/jigsaw-localization": "dev-main",
"nesbot/carbon": "^3.3",
"samdark/sitemap": "^2.4"
},
Expand Down
885 changes: 448 additions & 437 deletions composer.lock

Large diffs are not rendered by default.

80 changes: 78 additions & 2 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,84 @@
'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 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'
],
[
'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.'
],
[
'question' => 'What is Libresign?',
'answer' => 'LibreSign is a platform that makes it easy to sign documents digitally and electronically, guaranteeing security and compliance with the law. With it, you can sign documents using digital certificates, such as e-CPF(Registration of Individuals) or e-CNPJ(National Register of Legal Entities), simply and securely.'
],
[
'question' => 'What types of digital certificates does LibreSign accept?',
'answer' => 'LibreSign accepts e-CPF(Registration of Individuals), e-CNPJ(National Register of Legal Entities), and also certificates issued by Certificate Authorities in the ICP-Brasil standard. In addition, if you prefer, you can use certificates generated by the system itself.'
],
[
'question' => 'What is the difference between digital and electronic signatures?',
'answer' => 'A digital signature uses a digital certificate, which provides greater security and legal validity. Electronic signatures, on the other hand, are made in other ways, such as by e-mail or cell phone, and also have legal validity, depending on the context.'
],
[
'question' => 'Is LibreSign compatible with mobile devices?',
'answer' => 'Yes, you can use LibreSign directly from your smartphone or tablet by simply accessing the browser. This allows you to sign your documents from anywhere.'
],
[
'question' => 'Is it possible to integrate LibreSign with other systems?',
'answer' => 'Absolutely! LibreSign has APIs that allow you to integrate the platform with other systems you already use, helping to automate processes and make everything more agile.'
],
[
'question' => 'Can LibreSign be used by public bodies?',
'answer' => 'Yes, LibreSign is perfect for town halls and public bodies that need a secure and legally valid solution for signing documents.'
],
[
'question' => 'How can I buy LibreSign?',
'answer' => 'You can purchase LibreSign directly on our website or talk to our sales team, who will help you find the ideal plan for your needs.'
],
[
'question' => 'Does LibreSign offer technical support?',
'answer' => 'Yes, our support team is ready to help you with the configuration and with any questions or problems you may have.'
],
[
'question' => 'How are documents signed in LibreSign?',
'answer' => 'It is very simple! All you have to do is upload the document to the platform, choose who is going to sign it and select the form of signature (digital or electronic). The system will record everything and ensure that the process is secure and traceable.'
],
[
'question' => 'Does LibreSign time-stamp documents?',
'answer' => 'Yes, LibreSign offers time stamping, which guarantees the exact date and time of the signature, which brings even more security and legal validity.'
],
],
'getFromCategory' => function($page, $category) {
$files = array_merge(
Expand Down
Loading