Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasbailo/first-crud-js-html-css
My first CRUD using pure html, css and javascript
https://github.com/lucasbailo/first-crud-js-html-css
Last synced: about 1 month ago
JSON representation
My first CRUD using pure html, css and javascript
- Host: GitHub
- URL: https://github.com/lucasbailo/first-crud-js-html-css
- Owner: lucasbailo
- Created: 2024-01-19T12:51:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-13T02:49:37.000Z (12 months ago)
- Last Synced: 2024-02-13T03:48:52.988Z (12 months ago)
- Language: JavaScript
- Homepage: https://first-crud-js-html-css.vercel.app
- Size: 16.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Welcome again to my very first CRUD project! 👋
# Cost Control (Still in dev)
## Some code that I'm proud of
```js
function register(){
showLoading();const email = form.email().value;
const password = form.password().value;firebase.auth().createUserWithEmailAndPassword(
email, password
).then(() => {
hideLoading();
window.location.href = "../../pages/home/home.html"
}).catch(error =>{
hideLoading();
alert(getErrorMessage(error));
})
}
```## Built with
- HTML;
- CSS custom properties;
- JavaScript;
- Sweat and tears 😫.## Test the project yourself: [Teste the project here!!!](https://first-crud-js-html-css.vercel.app/)
### You can:
- Log in;
- Create your user;
- Change your password if you don't remember it;
- Check if all your information is correct!;
- There will be more features soon...## Author
- Website - [My GitHub](https://github.com/lucasbailo)
- Frontend Mentor - [@lucasbailo](https://www.frontendmentor.io/profile/lucasbailo)
- Instagram - [@lucassbailo](https://www.instagram.com/lucassbailo/)
- LinkedIn - [Lucas Bailo](https://www.linkedin.com/in/lcsbailo)