-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·49 lines (42 loc) · 1.49 KB
/
index.html
File metadata and controls
executable file
·49 lines (42 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Real Estate Tokenizer</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1 style="text-align: center;">Tokenize Your Pad</h1>
<hr>
<p style="text-align: center;">Buy and Sell Real Estate verifiably with Real Estate Tokenizer.</p>
</div>
<div id="ftc-Tokenize">
<h2>Tokenize</h2>
<div class="form-group">
Property Number
<br>
<input class="input-field" type="number" id="propertyNumber" name="propertyNumber" value=1><br>
<div class=button-div>
<button class="btn-fetchOne" id="button" type="button" data-id="1">Tokenize!</button>
</div>
</div>
<div class=form-break></div>
<hr>
</div>
<h2>Transaction History<span id="ftc-history"></span></h2>
<div>
<ul id="ftc-events">
<!-- Events will appear here from app.js -->
</ul>
<br>
<hr>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- <script src="js/web3.min.js"></script> -->
<script src="src/js/truffle-contract.js"></script>
<script src="src/js/app.js"></script>
</body>
</html>