This repository has been archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
v2.html
57 lines (50 loc) · 2.58 KB
/
v2.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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 4 JSON Form - Test Case</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
pre {
background: rgba(0,0,0,0.1);
padding: 5px;
border-radius: 10px;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word;
}
</style>
</head>
<body>
<!-- Nav -->
<nav class="navbar fixed-top navbar-dark bg-dark shadow">
<a href="v2.html" class="navbar-brand mb-0 h1">jsonform <span class="badge badge-primary p-2 ml-2">✨ v2</span></a>
<span class="navbar-text">
<a href="index.html" class="mr-3">Home</a>
<a href="list.html" class="mr-3">Lists</a>
<a href="validator.html" class="mr-3">Validator</a>
<a href="https://github.com/ambersnow/bs-jsonform">GitHub</a>
</span>
</nav>
<!-- Content -->
<div class="container mt-5 pt-5">
<h1 class="text-center">jsonform</h1>
<h3 class="text-center"><span class="badge badge-primary p-2">✨ now in version 2 ✨</span></h3>
<p class="text-center mt-3">
<a href="demo.html" class="btn btn-primary btn-lg py-3 px-5 font-weight-bold shadow">
Try out a demo
</a>
</p>
<h4 class="mt-5 text-center font-weight-bold">So, what's new?</h4>
<h5 class="text-center mt-3">
• No more jQuery dependency
<br /><br />
• Full custom field & theme API – create your own fields!
</h5>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>