An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Project: Sign-up Form

![Sign-up Form's responsive design](https://i.ibb.co/JyH2JQ4/Screenshot-20231120-114200.png)

[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
```