https://github.com/thuyencode/sign-up-form-for-odin-project
Project: Sign-up Form | The Odin Project
https://github.com/thuyencode/sign-up-form-for-odin-project
theodinproject vanilla-html
Last synced: about 2 months ago
JSON representation
Project: Sign-up Form | The Odin Project
- Host: GitHub
- URL: https://github.com/thuyencode/sign-up-form-for-odin-project
- Owner: thuyencode
- Created: 2023-11-20T04:40:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-20T08:30:42.000Z (over 2 years ago)
- Last Synced: 2026-01-03T16:29:00.107Z (5 months ago)
- Topics: theodinproject, vanilla-html
- Language: HTML
- Homepage: https://thuyencode.github.io/sign-up-form-for-odin-project/
- Size: 309 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Project: Sign-up Form

[More detail information here](https://www.theodinproject.com/lessons/node-path-intermediate-html-and-css-sign-up-form).
## Getting started
First, install all the dependencies:
```bash
npm install
# or if you're using Bun
bun install
```
To run the dev server:
```bash
npm run dev
# or if you're using Bun
bun dev
```
To export and preview the production build:
```bash
npm run build
npm run preview
# or if you're using Bun
bun run build
bun preview
```