Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | 15x 15x 15x | 'use strict'
var form = require('express-form')
var field = form.field
module.exports = form(
field('settingForm[aws:region]', 'リージョン')
.trim()
.is(/^[a-z]+-[a-z]+-\d+$/, 'リージョンには、AWSリージョン名を入力してください。 例: ap-northeast-1'),
field('settingForm[aws:bucket]', 'バケット名').trim(),
field('settingForm[aws:accessKeyId]', 'Access Key Id')
.trim()
.is(/^[\da-zA-Z]+$/),
field('settingForm[aws:secretAccessKey]', 'Secret Access Key').trim(),
)
|