forked from erpuno/fin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (72 loc) · 2.63 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
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
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="" />
<meta name="author" content="Maxim Sokhatsky" />
<title>BANK</title>
<link rel="stylesheet" href="https://bank.n2o.space/priv/static/css/synrc.css?v=1" />
</head>
<body>
<nav>
<a href='https://n2o.space'>SPACE</a>
<a href='#' style="background:#ededed;">BANK</a>
<a href='login.htm'>ADMIN</a>
</nav>
<header>
<a href="https://github.com/synrc/bank"><img src="https://synrc.space/images/Synrc Neo.svg?v=1"></a>
<h1>BANK</h1>
</header>
<aside>
<article>
<section>
<h3> SYNOPSIS</h3>
<div>BANK is an open source bank. It contains the very basic transfer and charge/withdrawal features.
It also can issue cards, deposits and crypto accounts.</div>
</section>
<section>
<h3><a href="https://n2o.dev">MODULES</a></h3>
<div><ul>
<li><a href="man/bank.htm">BANK</a></font></li>
<li><a href="man/bank_deposit.htm">DEPOSIT</a></font></li>
<li><a href="man/bank_credit.htm">CREDIT</a></font></li>
<li><a href="man/bank_fiat.htm">FIAT</a></font></li>
<li><a href="man/bank_crypto.htm">CRYPTO</a></font></li>
</ul></div>
<br>
<div>
APR 2019 © <a href="https://github.com/5HT">Namdak Tonpa</a> ISC<br>
VER 5.4 0.9
</div>
</section>
</article>
</aside>
<main>
<section>
<a name=intro><h3>INTRO</h3></a>
<p>BPE is a business process managament application that brings Erlang for enterprises.
It provides infrastructure for workflow definitions, process orchestration,
rule based production systems and distributed storage.</p>
<figure><code>
$ mad get bank
$ cd deps/bank
$ mad dep com pla rep
</code></figure>
</section>
<section>
<a name=intro><h3>PROTOCOL</h3></a>
<figure><code>
-record(open, { id=[] :: [] | integer() }).
-record(close, { id=[] :: [] | integer() }).
-record(charge, { id=[] :: [] | integer() }).
-record(withdraw, { id=[] :: [] | integer() }).
-record(transfer, { id=[] :: [] | integer() }).
</code></figure>
</section>
</main>
<footer>
Made with <span class="heart">❤</span> to N2O
</footer>
</body>
</html>