-
Notifications
You must be signed in to change notification settings - Fork 69
Feedbackform documentation #76
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
Open
CchristiNana
wants to merge
3
commits into
thoth-tech:main
Choose a base branch
from
CchristiNana:feedbackform-documentation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,76 @@ | ||
| --- | ||
| title: Feedback Form Implementation Documentation | ||
| description: Documentation of the feedback form setup for future maintenance and enhancement. | ||
| --- | ||
|
|
||
| ## Feedback Form Implementation Documentation | ||
|
|
||
| ### Overview | ||
|
|
||
| This document outlines the implementation and setup of the feedback form used on the Thoth Tech | ||
| Documentation Website. It is intended to assist future students and developers in understanding the | ||
| current system and to facilitate further development and maintenance. | ||
|
|
||
| ### Tools Used | ||
|
|
||
| - **HTML/CSS** for structuring and styling the form. | ||
| - **JavaScript** for front-end logic. | ||
| - **Web3Forms** for handling form submissions without server-side code. | ||
| - **Node.js** and **Express** for server-side logic in case of future custom backend integration. | ||
|
|
||
| ### Form Setup and Design | ||
|
|
||
| The feedback form is designed to be simple yet functional, enabling users to quickly provide their | ||
| feedback on the Thoth Tech Documentation Website. It includes fields for user identification, | ||
| feedback content, and ratings: | ||
|
|
||
| - **Name**: Allows the user to enter their name. | ||
| - **Email**: Allows the user to enter their email for follow-ups. | ||
| - **Feedback Type**: Users can select whether they are submitting a general suggestion or specific | ||
| improvement ideas. | ||
| - **Rating**: Users can rate their experience using star ratings. | ||
| - **Comments**: A textarea for additional comments. | ||
|
|
||
| ### Integration with Web3Forms | ||
|
|
||
| Web3Forms is used to manage form submissions. This service was selected for its simplicity and the | ||
| ability to handle form submissions without the need for additional backend code, making it ideal for | ||
| projects with limited server-side interaction: | ||
|
|
||
| #### How to Configure Web3Forms | ||
|
|
||
| 1. **API Key**: An API key is required from Web3Forms, which is included in the form's hidden input | ||
| field to authenticate requests. | ||
| 2. **Form Action**: The form's `action` attribute is set to the Web3Forms endpoint URL. | ||
| 3. **Method**: POST method is used to send data to the Web3Forms service. | ||
|
|
||
| ```html | ||
| <form action="https://api.web3forms.com/submit" method="post"> | ||
| <input type="hidden" name="access_key" value="your_access_key_here" /> | ||
| <!-- Additional form fields --> | ||
| </form> | ||
| ``` | ||
|
|
||
| ## Cybersecurity Review and Licensing are required for the Web3Forms | ||
|
|
||
| ### Cybersecurity Review | ||
|
|
||
| It is essential to conduct a cybersecurity review when using Web3Forms with a free account. This | ||
| review should assess the following aspects: | ||
|
|
||
| - **Data Security**: Ensure that the data submitted through the form is securely transmitted and | ||
| stored. | ||
| - **Vulnerabilities**: Identify any potential vulnerabilities that could be exploited. | ||
| - **Compliance**: Verify compliance with relevant data protection regulations and standards. | ||
|
|
||
| ### Licensing Information | ||
|
|
||
| Using the free account of Web3Forms comes with certain limitations and licensing terms that must be | ||
| considered: | ||
|
|
||
| - **Usage Limits**: There may be limits on the number of submissions or features available in the | ||
| free tier. | ||
| - **Terms of Service**: Review the Web3Forms terms of service to ensure that the usage complies with | ||
| their guidelines. | ||
| - **Upgrade Options**: Consider the options for upgrading to a paid plan if additional features or | ||
| higher usage limits are needed. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.