update
This commit is contained in:
16
assets/fonts/fonts.css
Normal file
16
assets/fonts/fonts.css
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* src/fonts.css atau public/fonts/fonts.css */
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Rubik';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 300;
|
||||||
|
src: url('/fonts/rubik/rubik-v28-latin-300.woff2') format('woff2');
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Rubik';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: url('/fonts/rubik/rubik-v28-latin-regular.woff2') format('woff2');
|
||||||
|
}
|
||||||
|
|
||||||
|
/* dst... */
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-300.woff2
Normal file
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-300.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-500.woff2
Normal file
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-500.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-600.woff2
Normal file
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-600.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-700.woff2
Normal file
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-700.woff2
Normal file
Binary file not shown.
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-regular.woff2
Normal file
BIN
assets/fonts/rubik/rubik-v31-latin/rubik-v31-latin-regular.woff2
Normal file
Binary file not shown.
@ -15,7 +15,9 @@
|
|||||||
<body marginheight="0" topmargin="0" marginwidth="0" style="margin: 0px; background-color: #f2f3f8;" leftmargin="0">
|
<body marginheight="0" topmargin="0" marginwidth="0" style="margin: 0px; background-color: #f2f3f8;" leftmargin="0">
|
||||||
<!--100% body table-->
|
<!--100% body table-->
|
||||||
<table cellspacing="0" border="0" cellpadding="0" width="100%" bgcolor="#f2f3f8"
|
<table cellspacing="0" border="0" cellpadding="0" width="100%" bgcolor="#f2f3f8"
|
||||||
style="@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700|Open+Sans:300,400,600,700); font-family: 'Open Sans', sans-serif;">
|
style="font-family: 'Open Sans', sans-serif">
|
||||||
|
<!-- <table cellspacing="0" border="0" cellpadding="0" width="100%" bgcolor="#f2f3f8"
|
||||||
|
style="@import url(https://fonts.googleapis.com/css?family=Rubik:300,400,500,700|Open+Sans:300,400,600,700); font-family: 'Open Sans', sans-serif;"> -->
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<table style="background-color: #f2f3f8; max-width:670px; margin:0 auto;" width="100%" border="0"
|
<table style="background-color: #f2f3f8; max-width:670px; margin:0 auto;" width="100%" border="0"
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
"database": {
|
"database": {
|
||||||
"engine": "postgres",
|
"engine": "postgres",
|
||||||
"host": "127.0.0.1",
|
"host": "127.0.0.1",
|
||||||
"port": "1520",
|
"port": "15432",
|
||||||
"username": "saude_stag",
|
"username": "saude_stag",
|
||||||
"password": "gM*#o>3W4&5X",
|
"password": "gM*#o>3W4&5X",
|
||||||
"database": "saude_stag",
|
"database": "saude_stag",
|
||||||
|
|||||||
@ -2,6 +2,8 @@ import express from 'express';
|
|||||||
|
|
||||||
import { AuthController } from '../controllers/auth';
|
import { AuthController } from '../controllers/auth';
|
||||||
import { Language } from '../langs/lang';
|
import { Language } from '../langs/lang';
|
||||||
|
import path from 'path';
|
||||||
|
import fs from 'fs';
|
||||||
|
|
||||||
export class RoutePublic {
|
export class RoutePublic {
|
||||||
static setup(app: express.Application) {
|
static setup(app: express.Application) {
|
||||||
@ -13,6 +15,7 @@ export class RoutePublic {
|
|||||||
app.put('/api/update_password/:token', AuthController.updatePassword)
|
app.put('/api/update_password/:token', AuthController.updatePassword)
|
||||||
app.put('/api/logout/:refresh_token', AuthController.logout)
|
app.put('/api/logout/:refresh_token', AuthController.logout)
|
||||||
app.put('/api/renew_token/:refresh_token/:application', AuthController.renewToken)
|
app.put('/api/renew_token/:refresh_token/:application', AuthController.renewToken)
|
||||||
|
app.use('/static', express.static(path.join(__dirname, 'assets')));
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user