Advertisement
Guest User

Untitled

a guest
Jun 10th, 2014
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.50 KB | None | 0 0
  1. @(loginUrl: String, serverLogin: Option[String])
  2.  
  3. @main("INE5636 - Previsao do tempo") {
  4.  
  5.         <h1>INE5646 - Previsao do Tempo</h1>
  6.           <p>Fonte dos dados metereologicos: <a href="http://openweathermap.org" target="_blank">Open Weather Map</a></p>
  7.                
  8.                 <a href="@loginUrl">Login</a>
  9.                 </p>
  10.    
  11.     @serverLogin match {
  12.                 case None => { " " }
  13.                 case Some(url) => { <a href="@url">Acesso Servidor</a> }
  14.         }
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement