-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
77 lines (65 loc) · 2.51 KB
/
index.php
File metadata and controls
77 lines (65 loc) · 2.51 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
71
72
73
74
75
76
77
<?php
error_reporting(0);
include_once 'class/Connector.php';
$db = new Connector();
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>Start DevWorms</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="navbar navbar-fixed-top header" id="subnav">
<div class="col-md-12">
<div class="navbar-header">
<img src="img/logo.png">
</div>
</div>
</div>
<br><br><br><br>
<!--main-->
<div class="container" id="main">
<div class="panel panel-default">
<div class="panel-body">
<!-- ********************** FORM 1 **********************-->
<div class="step well">
<h2>Form I</h2>
<br><br>
<div class="row">
<div class="col-md-4">
Nombre
<input type="text" id="name" placeholder="John Doe" class="form-control">
<br>
Correo
<input type="text" id="mail" placeholder="ejemplo@devworms.com" class="form-control">
<br>
Contraseña
<input type="password" id="pass" placeholder="pass1234" class="form-control">
<br>
</div>
</div>
<button class="btn btn-success" id="btn_form1"> LISTO </button>
</div>
<button class="action back btn btn-info" id="btnSiguiente" style="display:none">Back</button>
</div>
</div>
<!-- ********************** FOOTER ********************** -->
<div class="row">
<div class="clearfix"></div>
<hr>
<div class="col-md-12 text-center">
<p style="color:#545B60">
<a href="http://devworms.com" target="_blank">DevWorms</a>
</p>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/postform.js"></script>
</body>
</html>