This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const multer = require('multer'); | |
const app = express(); | |
const storage = multer.diskStorage({ | |
destination: function (req, file, cb) { | |
cb(null, 'tmp') | |
}, | |
filename: function (req, file, cb) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select class="form-control " id="bank"> | |
<option selected>Choose</option> | |
<option value="access">Access Bank</option> | |
<option value="citibank">Citibank</option> | |
<option value="diamond">Diamond Bank</option> | |
<option value="ecobank">Ecobank</option> | |
<option value="fidelity">Fidelity Bank</option> | |
<option value="firstbank">First Bank</option> | |
<option value="fcmb">First City Monument Bank (FCMB)</option> | |
<option value="gtb">Guaranty Trust Bank (GTB)</option> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |