-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconta_excluida.php
27 lines (26 loc) · 945 Bytes
/
conta_excluida.php
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Conta Excluída</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/Logo.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div class="wrapper">
<header>Lumiener<br> Conta Excluída</header>
<div class="alert alert-success" role="alert">
Sua conta foi excluída com sucesso.
</div>
<div class="sign-txt">
<a href="main.php">Voltar para a página inicial</a>
</div>
</div>
</body>
</html>