-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 2.27 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>MAESTRO</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="img/maestro.png" type="image/x-icon">
<link rel="stylesheet" href="main.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="javascript.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body class="container bg-dark">
<header class="d-flex flex-wrap justify-content-center py-3 mb-4 border-bottom">
<a href="https://github.com/rfps09" class="d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none">
<span class="fs-4 text-white">RFPS09</span>
</a>
<ul class="nav nav-pills">
<li class="nav-item"><a href="" class="nav-link text-black bg-white active" aria-current="page">Página Inicial</a></li>
<li class="nav-item"><a href="howtouse.html" class="nav-link text-white">Como Usar?</a></li>
</ul>
</header>
<main class="classic col-md-8">
<h1>Maestro</h1>
<p>O maestro converte a linguagem natural do usuário em comandos de busca REGEX para utilização em bancos de dados como o PostgreSQL. Ele cria uma expressão regular a partir da entrada do usuário, visando identificar padrões específicos em um texto.</p>
<label><strong>Entrada:</strong></label><br>
<div class="input-group mb-3">
<input type="text" id="entrada" class="form-control" onchange="myFunction()">
<div class="input-group-append">
<button class="btn btn-dark" type="button" onclick="myFunction()">Gerar REGEX</button>
</div>
</div>
<p id="saida"></p>
</main>
<footer class="footer">
<p>Desenvolvido por <a href="https://github.com/rfps09" class="text-white">@rfps09</a>.</p>
</footer>
</body>
</html>