-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexMobile.php
More file actions
70 lines (63 loc) · 2.75 KB
/
indexMobile.php
File metadata and controls
70 lines (63 loc) · 2.75 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
session_start();
if(isset($_SESSION['user_id']))
header("location:home.php");
else{}
?>
<!DOCTYPE html>
<html>
<head>
<title>The Web Wall</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" media="screen">
<link href="css/styleMobile.css" rel="stylesheet" media="screen">
<style>
#wall ._tile {
background-image:url("images/fundo1.1.jpg");}
</style>
</head>
<body>
<header>
<div class="navbar-inverse navbar-static-top barra">
<div class="navbar-inner">
<button class="btn btn-large btn-success btnCadastrese" onclick="navcadastro()">Cadastre-se!</button>
<div class="navbar-form login">
<form class="form-horizontal" method="POST" action="controller/login.php">
<input type="email" name="email" placeholder="email" required>
<input type="password" name="password" placeholder="senha" required>
<input class="btn btn-info btnSignin" type="submit" value="Sign In" />
</form>
</div>
</div>
</div>
</header>
<section class="container">
<h1 id="tituloMaster">The Web Wall </h1>
<div id="wall-viewport">
<div id="wall">
</div>
</div>
</section>
<footer>
</footer>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="js/jquery.infinitedrag.js"></script>
<script type="text/javascript" src="js/jquery.ui.touch-punch.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script> var tile_options = {
width : 960,
height : 534,
start_col :0,
start_row :0,
range_col: [0, 3],
range_row: [0, 3],
oncreate :function($element,col,row){ $element.load("indexContent.php?c="+col+row)}
};
jQuery.infinitedrag("#wall", {},tile_options); </script>
</body>
</html>