56 |
|
104 |
├── .editorconfig ├── .github ├── logo-dark.svg └── logo-light.svg ├── .gitignore ├── README.md ├── _dist └── emails │ ├── confirmation.html │ ├── email-change.html │ ├── invitation.html │ └── password-recovery.html ├── components ├── button.html ├── divider.html ├── footer.html ├── spacer.html └── v-fill.html ├── config.js ├── config.production.js ├── emails ├── confirmation.html ├── email-change.html ├── invitation.html └── password-recovery.html ├── layouts └── main.html ├── package.json └── tailwind.config.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | -------------------------------------------------------------------------------- /.github/logo-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/logo-light.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build_local 3 | .vscode 4 | .idea 5 | Thumbs.db 6 | .DS_Store 7 | npm-debug.log 8 | yarn-error.log 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
12 | 13 | # About 14 | 15 | HTML email templates for [Netlify Identity](https://www.netlify.com/docs/identity/), built with [Tailwind CSS](https://tailwindcss.com/) in [Maizzle](https://maizzle.com). 16 | 17 | ## Getting started 18 | 19 | Use the wizard to create a new Maizzle project: 20 | 21 | ```bash 22 | npx create-maizzle 23 | ``` 24 | 25 | When prompted to select a Starter, choose **Custom ➜ Git** and then type `maizzle/starter-netlify-identity`. 26 | 27 | ## Development 28 | 29 | Start a local development server: 30 | 31 | ``` 32 | npm run dev 33 | ``` 34 | 35 | Build for production: 36 | 37 | ``` 38 | npm run build 39 | ``` 40 | 41 | ## Documentation 42 | 43 | Maizzle documentation is available at https://maizzle.com 44 | -------------------------------------------------------------------------------- /_dist/emails/confirmation.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 22 |
56 |
|
104 |
52 |
|
100 |
52 |
|
100 |
52 |
|
100 |
Powered by Maizzle
2 |Quickly build HTML emails with utility-first CSS
3 |4 | Docs • 5 | Github • 6 | Twitter 7 |
8 | -------------------------------------------------------------------------------- /components/spacer.html: -------------------------------------------------------------------------------- 1 | 18 | 19 |
10 |
|
51 |
10 |
|
51 |
10 |
|
51 |
10 |
|
51 |