mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-23 01:55:10 +00:00
here again
This commit is contained in:
parent
d48c2f4e55
commit
4eb11373a9
2 changed files with 38 additions and 3 deletions
|
|
@ -2,7 +2,6 @@ const express = require('express')
|
|||
const app = express()
|
||||
const port = 3000
|
||||
|
||||
app.use(express.static('client'));
|
||||
app.get('/menu', function (req, res) {
|
||||
res.sendFile('mainMenu.html', { root: '../client/html' });
|
||||
});
|
||||
|
|
|
|||
|
|
@ -1,10 +1,46 @@
|
|||
<html>
|
||||
|
||||
<head><title> Create New Block </title></head>
|
||||
<head>
|
||||
<title> Create New Block </title>
|
||||
<style>
|
||||
.center{
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
p{
|
||||
color: white;
|
||||
text-align: center;
|
||||
font-family: Brush Script MT;
|
||||
font-size: 35px;
|
||||
}
|
||||
|
||||
body{
|
||||
background-color: rgb(50, 255, 9);
|
||||
}
|
||||
|
||||
/*h1{
|
||||
color: white;
|
||||
text-align: center;
|
||||
font-family: serif;
|
||||
font-size: 30px;
|
||||
}*/
|
||||
|
||||
.text-block {
|
||||
position: center;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
background-color: black;
|
||||
color: white;
|
||||
padding-left: 55px;
|
||||
padding-right: 20px;
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<link href="client/css/createNewBlockCSS.css" rel = "stylesheet">
|
||||
<!--<link href="/css/createNewBlockCSS.css" rel = "stylesheet">-->
|
||||
|
||||
<script src=""></script>
|
||||
<script src=""></script>
|
||||
|
|
|
|||
Loading…
Reference in a new issue