Commit inicial

This commit is contained in:
2024-10-03 21:47:02 -04:00
commit 982c618c13
13 changed files with 1756 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/stylesheets/style.css">
<title>Document</title>
</head>
<body>
<h1>Autenticar</h1>
<form action="" method="post">
<label for="">Usuario</label>
<input type="text" name="usuario" id="">
<label for="">Senha</label>
<input type="password" name="senha" id="">
<input type="submit" value="Enviar">
</form>
</body>
</html>

11
views/home/index.ejs Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
</head>
<body>
<h1><%= title %></h1>
<p>Welcome to <%= title %></p>
</body>
</html>