Skip to content

Commit

Permalink
📚 docs: Criacao do arquivo README
Browse files Browse the repository at this point in the history
  • Loading branch information
lebarrichello committed Nov 6, 2023
1 parent 74ae542 commit ffe1180
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
Binary file added Gravação de tela de 06-11-2023 16:37:11.webm
Binary file not shown.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## Mini projeto: Gerador de senhas seguras

Projeto desenvolvido como parte dos estudos no módulo de Front-End do curso de desenvolvimento web da Trybe

![mobile](/Grava%C3%A7%C3%A3o%20de%20tela%20de%2006-11-2023%2016%3A37%3A11.webm
)
<p>Acesse o projeto em produção <a href="https://lebarrichello.github.io/gerador-senha-segura/" target="_blank">clicando aqui</a></p>

## 🎯 Objetivo

Desenvolver uma pequena aplicação que é um gerador de senhas aleatórias, onde cada vez que é clicado no botão de gerar senha é recomendada uma senha forte. Essa senha é gerada por uma biblioteca externa chamada [nanoid](https://zelark.github.io/nano-id-cc/)

## 💻 Tecnologias utilizadas:
<div style="display: inline_block">
<img alt="HTML5" src="https://img.shields.io/badge/HTML5-E34F26?style=for-the-badge&logo=html5&logoColor=white">
<img alt="CSS3" src="https://img.shields.io/badge/CSS3-1572B6?style=for-the-badge&logo=css3&logoColor=white">
<img alt="JavaScript" src="https://img.shields.io/badge/JavaScript-323330?style=for-the-badge&logo=javascript&logoColor=F7DF1E">
</div>


## 📌 Créditos
- **Favicon:** -> [br.vexels](https://br.vexels.com/icon/cadeado/)


2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Gerador de Senhas Seguras</title>
<link rel="shortcut icon" href="https://images.vexels.com/media/users/3/136535/isolated/preview/393a7d8e436bccc3aedfd43865b48890-icone-de-cadeado.png" type="image/x-icon">
</head>
<body>
<main>
Expand Down
1 change: 0 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { nanoid } from 'nanoid';
import copy from 'clipboard-copy';
import '../src/style.css';

const passwordBtnEl = document.querySelector('button');
const displayPasswordEl = document.querySelector('h2');
Expand Down

0 comments on commit ffe1180

Please sign in to comment.