-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (127 loc) · 6.46 KB
/
index.html
File metadata and controls
136 lines (127 loc) · 6.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<title>Soulrepo</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body >
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="index.html"><b>Soulrepo</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
<!-- End nav -->
<div style="position: relative;" class="text-left">
<img src="assets/img/hero.jpg" class="d-block w-100" alt="...">
<div style="position: absolute; top: 0;" class="mt-4">
<h1 class="text-light">A decentralized platform</h1>
<h1 class="text-light">for Schools and Institutions, papers, article and projects</h1>
</div>
</div>
<!-- Intro Section-->
<section id="intro">
<div class="container mt-4">
<div class="row">
<div class="col-lg-8">
<p class="text-big">Soulrepo, Home of Quality Projects, Papers, Articles, <strong>A decentralized Platform</strong> where <strong>Projects, Papers article etc can be uploaded to the blockchain, viewed and purchased</strong>.
</p>
</div>
</div>
</div>
</section>
<!-- Registration Form -->
<br><br><br>
<section class="container mt-4">
<div class="container mt-4">
<div style="text-align: center;">
<h1 style="text-align: center;">Register</h1>
<p style="text-align: center;" class="text-h3">Fill the fields below correctly</p>
</div>
<div>
<input id="Username" type="text" class="form-control" placeholder="Fullname">
<input id="price" type="number" class="form-control" placeholder="Price Of Project">
<input id="projectdescription" type="text" class="form-control" placeholder="Project Description">
<input id="projectlink" type="text" class="form-control" placeholder="Project Drive/Storage link">
</div>
<center>
<div>
<button id="regBtn" class="btn btn-success mt-4">Submit</button>
</div>
</center>
</div>
</section>
<!-- Page Footer-->
<footer class="main-footer">
<div class="container">
<div class="row">
</div>
</div>
<div class="copyrights">
<div class="container">
<div class="row">
<div class="col-md-6">
<p>©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script> All rights reserved. </p>
</div>
</div>
</div>
</div>
</footer>
</div>
<!-- JavaScript files-->
<script id="template" type="x-tmpl-mustache">
{{#ProjectArray}}
<div class="row d-flex align-items-stretch">
<div class="text col-lg-7">
<div class="text-inner d-flex align-items-center">
<div class="content">
<header class="post-header">
<div class="category">
<a href="#">{{name}}</a>
<a href="#">Project</a>
</div>
<a href="post.html">
<h2 class="h4">{{name}} built this project</h2>
</a>
</header>
<p>{{documentation}}.</p>
<footer class="post-footer d-flex align-items-center">
<a href="#" class="author d-flex align-items-center flex-wrap">
<div class="avatar"><img src="{{images}}" alt="..." class="img-fluid"></div>
<div class="title"><span>{{name}}</span></div>
</a>
<div class="date"><i class="icon-clock"></i> {{timestamp}}</div>
<div class="comments"><i class="icon-comment"></i>12</div>
</footer>
</div>
</div>
</div>
<div class="image col-lg-5"><img src="{{ images }}" alt="..."></div>
</div>
<center>
<div><input type="number" id= "tipValue" placeholder = "Tip the owner "></div>
<div><button id= "tipbutton" class="btn-success">Fund Project</button></div>
</center>
{{/ProjectArray}}
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/popper.js/umd/popper.min.js"> </script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/vendor/jquery.cookie/jquery.cookie.js"> </script>
<script src="assets/vendor/@fancyapps/fancybox/jquery.fancybox.min.js"></script>
<script src="assets/js/front.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/3.0.1/mustache.js"></script>
<script src="https://unpkg.com/@aeternity/aepp-sdk/dist/aepp-sdk.browser-script.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>