1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/packages/server/appPackages/testApp2/public/unauthenticated/index.html

31 lines
729 B
HTML
Raw Normal View History

2019-09-09 16:24:14 +12:00
<!doctype html>
<html>
2019-09-09 16:24:14 +12:00
<head>
<meta charset='utf8'>
<meta name='viewport' content='width=device-width'>
2019-10-19 05:32:03 +13:00
<title>My App - Login</title>
2019-09-22 16:02:33 +12:00
<link rel='icon' type='image/png' href='/testApp2//_shared/favicon.png'>
2019-09-09 16:24:14 +12:00
2019-09-22 16:02:33 +12:00
<style>
html, body {
height: 100%;
width: 100%;
}
</style>
2019-10-14 20:32:20 +13:00
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css'>
2019-09-09 16:24:14 +12:00
<script src='/_master/clientFrontendDefinition.js'></script>
<script src='/_master/clientBackendDefinition.js'></script>
2019-09-09 16:24:14 +12:00
<script src='/testApp2/budibase-client.js'></script>
2019-09-22 16:02:33 +12:00
<script>
loadBudibase();
</script>
2019-09-09 16:24:14 +12:00
</head>
<body id="app">
2019-09-22 16:02:33 +12:00
2019-09-09 16:24:14 +12:00
</body>
</html>