-
Notifications
You must be signed in to change notification settings - Fork 2
/
fe.html
34 lines (32 loc) · 1 KB
/
fe.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
<html>
<head>
<title>Openx Generator</title>
<link rel="stylesheet" href="./style.css">
<style>
body {
background: white;
}
* {
font-family: Helvetica, sans-serif;
text-align: center;
}
input {
font-size: 16px !important;
}
</style>
</head>
<body>
<!-- partial:index.partial.html -->
<!-- partial -->
<h1>Welcome to the openx platform generator</h1>
<form action="http://localhost:8081/setup" method="post">
<input type="text" name="org" placeholder="Organization Name"><br>
<input type="text" name="platform" placeholder="Platform Name"><br>
<input type="text" name="emailentity" placeholder="Email Entity Name"><br><br>
<input type="checkbox" name="abl"> Support Non Stellar Blockchains<br>
<input type="checkbox" name="invo"> Add additional options for investors<br>
<input type="checkbox" name="recpo"> Add additional options for recipients<br><br>
<input type="submit" name="submit" />
</form>
</body>
</html>