Skip to content

Commit

Permalink
Criando pagina html
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jul 26, 2023
1 parent 0ec0f24 commit b5c8e1b
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
.npmignore
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Multiform-validator

[![npm version](https://badge.fury.io/js/multiform-validator.svg?refresh=1)](https://badge.fury.io/js/multiform-validator)
[![npm version](https://badge.fury.io/js/multiform-validator.svg?refresh=2)](https://badge.fury.io/js/multiform-validator)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![npm downloads](https://img.shields.io/npm/dm/multiform-validator.svg?style=flat-square)](https://npm-stat.com/charts.html?package=multiform-validator)


This npm package provides JavaScript functions to validate various forms fields.

An HTML page will be created on GitHub where more detailed information can be found. For now, you can read the parameter comments when you hover over the functions, at least in Visual Studio Code.

link: https://gabriel-logan.github.io/multiform-validator

Feel free to find bugs and report them to me. Your feedback is highly appreciated. Hugs from Gabriel Logan!

### Installation
Expand Down
15 changes: 15 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Multiform-validator</title>
<meta name="description" content="This npm package provides JavaScript functions to validate various forms fields.">
<link rel="stylesheet" href="./srcPage/styles/home/style.css">
</head>
<body>
<h1>For now just a hello</h1>
<p>An HTML page will be created on GitHub where more detailed information can be found. For now, you can read the parameter comments when you hover over the functions, at least in Visual Studio Code.</p>
<a href="https://github.com/gabriel-logan/multiform-validator" target="_blank" rel="noopener noreferrer">Go to github page</a>
</body>
</html>
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multiform-validator",
"version": "1.0.13",
"version": "1.0.14",
"description": "Javascript library made to validate, several form fields, such as: email, phone, password, cpf etc.",
"main": "index.js",
"scripts": {
Expand Down
3 changes: 3 additions & 0 deletions srcPage/styles/home/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
text-align: center;
}/*# sourceMappingURL=style.css.map */
1 change: 1 addition & 0 deletions srcPage/styles/home/style.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions srcPage/styles/home/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body{
text-align: center;
}

0 comments on commit b5c8e1b

Please sign in to comment.