This file contains hidden or 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
| define [ | |
| 'core' | |
| 'layout/layout' | |
| ], () -> | |
| 'use strict' | |
| Core = require 'core' | |
| Session = require 'core/session' | |
| Layout = require 'layout/layout' |
This file contains hidden or 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
| define [ | |
| 'core' | |
| 'views/site/index_view' | |
| ], () -> | |
| # Imports | |
| # ============================================================= | |
| Core = require 'core' | |
| IndexView = require 'views/site/index_view' |
This file contains hidden or 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
| define [ | |
| 'core' | |
| ], () -> | |
| # Imports | |
| # ============================================================= | |
| Core = require 'core' | |
| # IndexView class |
This file contains hidden or 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
| <form role="form" class="form-horizontal" novalidate> | |
| <div class="form-group"> | |
| <h4>Qual seu endereço de email?</h4> | |
| <label for="email" class="col-sm-2 control-label">Meu email é: </label> | |
| <div class="col-sm-4"> | |
| <input type="email" class="form-control" id="email" name="email" autofocus> | |
| </div> | |
| </div> |
This file contains hidden or 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
| <div id="modal-password" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="esqueci-minha-senha" aria-hidden="true"> | |
| <div class="modal-dialog"> | |
| <div class="modal-content"> | |
| <div class="modal-header"> | |
| <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | |
| <h4 class="modal-title" id="esqueci-minha-senha">Esqueci minha senha</h4> | |
| </div> | |
| <div class="modal-body"> | |
| <div class="form-group"> | |
| <label for="email-forgot" class="col-sm-2 control-label">Meu email é: </label> |
This file contains hidden or 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
| INSERT INTO dne.Estado (nome, uf) | |
| VALUES | |
| ('Acre' , 'AC'), | |
| ('Alagoas' , 'AL'), | |
| ('Amapá' , 'AP'), | |
| ('Amazonas' , 'AM'), | |
| ('Bahia' , 'BA'), | |
| ('Ceará' , 'CE'), | |
| ('Distrito Federal' , 'DF'), | |
| ('Espírito Santo' , 'ES'), |
This file contains hidden or 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
| INSERT INTO dne.Cidade (nome, estado_id) VALUES | |
| ('Afonso Cláudio', 8), | |
| ('Água Doce do Norte', 8), | |
| ('Águia Branca', 8), | |
| ('Alegre', 8), | |
| ('Alfredo Chaves', 8), | |
| ('Alto Rio Novo', 8), | |
| ('Anchieta', 8), | |
| ('Apiacá', 8), | |
| ('Aracruz', 8), |
This file contains hidden or 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
| INSERT INTO dne.Cidade (nome, estado_id) VALUES | |
| ('Afonso Cláudio', 8), | |
| ('Água Doce do Norte', 8), | |
| ('Águia Branca', 8), | |
| ('Alegre', 8), | |
| ('Alfredo Chaves', 8), | |
| ('Alto Rio Novo', 8), | |
| ('Anchieta', 8), | |
| ('Apiacá', 8), | |
| ('Aracruz', 8), |
This file contains hidden or 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
| define [ | |
| 'core' | |
| 'jqtree' | |
| 'models/espaco_fisico_model' | |
| 'daos/espaco_fisico_dao' | |
| ], () -> | |
| # Imports | |
| # ============================================================= |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
| <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
| <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title></title> | |
| <meta name="description" content=""> |
OlderNewer