Skip to content

Commit

Permalink
improving new user
Browse files Browse the repository at this point in the history
  • Loading branch information
zakxxi committed Jan 10, 2013
1 parent a3fc192 commit 25439fe
Showing 1 changed file with 32 additions and 71 deletions.
103 changes: 32 additions & 71 deletions views/newuser.jade
@@ -1,74 +1,35 @@
extend layout

block head
style(type="text/css")
body
{
width:70%;
}
body.default {
width:70%;
margin-left:auto;
margin-right:auto;
font-family:"NotCourierSansRegular",monospace;
}
p.t {
}
p.p {
font-weight:bold;
text-align:center;
}
td{
border:1px #eee solid;
padding: 5px 5px 5px 5px;
}
th{
color:#111;
background-color:#eee;
padding: 5px 5px 5px 5px;
font-weight:bold;

}
input{
padding:2px 2px 2px 2px;
margin:2px 2px 2px 2px;
font-family:"NotCourierSansRegular",monospace;
border:1px #eee solid;
}
label{
text-decoration:underline;
margin-right:1em;
margin-left:1em;
}

block body
h1 Nouvel utilisateur
form(action='/admin/user/new',method='post')
table
tr
td Pseudo
td
input(name="author",placeholder="MonNom")
tr
td Mot de passe
td
input(name="password",placeholder="MotDePasse")
tr
td Email
td
input(name="email",size="50",placeholder="moi@textopoly.org")
tr
td Site Web
td
input(name="url",size="50",placeholder="http://textopoly.org")
tr
td

td
En cliquant sur le bouton "S'inscrire", j'accepte sans condition
br
la Charte d'Utilisation. Lisible :
a(href="http://blog.textopoly.org/?page_id=138",target='_new') ici
tr
td
input(style="width:100%",type='submit',value="S'inscrire")
div#content
div#uiWrap
div#header.small
div#topbar
div#title
h1 <a href="/">TEXTOPOLY</a>
div#blink

div#main(style="font-align:center;")
h1 Bienvenue sur Textopoly !
hr
h2 S'inscrire
hr
form(action='/admin/user/new',method='post')
label Pseudo

input(type='text', name="author", value="MonNom")
label Mot de passe

input(type='text', name="password",value="MotDePasse")
label Email

input(type='text', name="email",size="50",value="moi@textopoly.org")
label Site Web

input(type='text', name="url",size="50",value="http://textopoly.org")
p(style="margin-top:10px;") En cliquant sur le bouton "S'inscrire", j'accepte sans condition la Charte d'Utilisation. Lisible :
a(href="http://blog.textopoly.org/?page_id=138",target='_new') ici.

input(type='submit',value="S'inscrire",style="margin-top:10px;")
div#footer
h3 <a href="/logout">Fermer la session</a>

0 comments on commit 25439fe

Please sign in to comment.