-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
42 lines (40 loc) · 1.33 KB
/
contacts.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Just Pay</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body class="bg-blue">
<header>
<p>Just Pay</p>
</header>
<div class="container container-contacts center">
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s10 offset-s1 col l4 offset-l4">
<input id="name-contact" type="text">
<label for="name-contact">Contact</label>
</div>
</div>
<div class="row">
<div class="col s10 offset-s1 col l4 offset-l4">
<div id="list"></div>
</div>
</div>
</form>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/materialize.min.js"></script>
<script src="js/contacts.js"></script>
</body>
</html>