-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.69 KB
/
index.html
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
<!doctype html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css"/>
<script src="form.js"></script>
<title>Document</title>
</head>
<body>
<div class="col-sm-6 col-sm-offset-3">
<form method="post" action="process.php">
<div id="error-block"></div>
<div id="name-group" class="form-group">
<label for="name">name</label>
<input type="text" id="name" class="form-control">
</div>
<div id="surname-group" class="form-group">
<label for="surname">surname</label>
<input type="text" id="surname" class="form-control">
</div>
<div id="email-group" class="form-group">
<label for="email">email</label>
<input type="text" id="email" class="form-control" >
</div>
<div id="password-group" class="form-group">
<label for="password">password</label>
<input type="password" id="password" class="form-control">
</div>
<div id="repeat-password-group" class="form-group">
<label for="repeat-password">Repeat password</label>
<input type="password" id="repeat-password" class="form-control">
</div>
<button type="submit" class="btn btn-success">Send</button>
</form>
</div>
</body>
</html>