-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader-inscricao.php
47 lines (43 loc) · 1.54 KB
/
header-inscricao.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
/**
* The header for our theme.
*
* This is the template that displays all of the <head> section and everything up until <div id="content">
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package coletivo
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<form id="login-user" action="login" method="post">
<h1>Entrar</h1>
<p class="status"></p>
<label for="username">Email</label>
<input id="username" type="text" name="username">
<label for="password">Senha</label>
<input id="password" type="password" name="password">
<a class="lost" href="<?php echo wp_lostpassword_url(); ?>">Perdeu a senha?</a>
<input class="submit_button" type="submit" value="Entrar" name="submit">
<a class="close" href="">X</a>
<?php wp_nonce_field( 'ajax-login-nonce', 'security' ); ?>
</form>
<?php do_action( 'coletivo_before_site_star' ); ?>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'coletivo' ); ?></a>
<?php
/**
* Hooked: coletivo_site_header
*
* @see coletivo_site_header
*/
do_action( 'coletivo_site_start' );
?>