-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
21 lines (21 loc) · 946 Bytes
/
index.php
File metadata and controls
21 lines (21 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Pagina Inicial</title>
<link href="loginmodule.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 align="center">Pagina Inicial</h1>
<p align="center"> </p>
<h4 align="center" class="err">Escolha metodo de autenticacao</h4>
<p align="center">
<input type="button" value="Login Membro" class="homebutton" id="btnHome"
onClick="document.location.href='login-form.php'" />
<input type="button" value="Cadastro Membro" class="homebutton" id="btnHome"
onClick="document.location.href='register-form.php'" />
<input type="button" value="Login Adm" class="homebutton" id="btnHome"
onClick="document.location.href='login-adm-form.php'" />
</p>
</body>
</html>