Geral Família tipográfica: Verdana, Geneva, sans-serif Largura do corpo: 700px de ancho. Tamanho da fonte: 18px
Crie uma pasta "img", salve a imagem anexada lá e inclua-a dentro do html no local do esboço. Título principal
| <%- contentFor('HeaderCss') %> | |
| <%- contentFor('title') %> Cadastrar grupo | |
| <%- contentFor('breadcrumb') %> | |
| <div class="col-sm-8"> | |
| <div class="page-title-box"> | |
| <h4 class="font-size-18">Cadastrar grupo</h4> | |
| <ol class="breadcrumb mb-0"> | |
| <li class="breadcrumb-item"> | |
| <a href="javascript: void(0);">Página Inicial</a> | |
| </li> |
| <style> | |
| p { | |
| display: inline; | |
| font-size: 40px; | |
| margin-top: 0px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <p id="days"></p> |
| import React from "react"; | |
| import styled from "styled-components"; | |
| import Input from "../components/Input"; | |
| import Container from "../components/Container"; | |
| import Select from "../components/Select"; | |
| const Title = styled.h1` | |
| font-weight: bold; | |
| color: black; | |
| display: block; |
| import "../App.css"; | |
| import React, { Component } from "react"; | |
| class Form extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.initialState = { | |
| origin: "", | |
| destiny: "", | |
| time: "", |
| ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Current-Root-Password'; | |
| FLUSH PRIVILEGES; |
| npm install --save @fortawesome/fontawesome-svg-core @fortawesome/free-solid-svg-icons @fortawesome/react-fontawesome |
| function somaDeGauss(numeroMaximo) { | |
| // Escreva seu código aqui | |
| var total = 0; | |
| for(var i = 1; i <= numeroMaximo; i++){ | |
| total += i; | |
| } | |
| return total; | |
| } |
| async update({ params, request, response, session }) { | |
| const trie = await Trie.find(params.id); | |
| trie.name = request.input("name"); | |
| trie.email = request.input("email"); | |
| trie.area = request.input("area"); | |
| await trie.save(); | |
| session.flash({ successmessage: "Trie has been updated" }); | |
| return response.redirect("/"); | |
| } |
Geral Família tipográfica: Verdana, Geneva, sans-serif Largura do corpo: 700px de ancho. Tamanho da fonte: 18px
Crie uma pasta "img", salve a imagem anexada lá e inclua-a dentro do html no local do esboço. Título principal