Sign up Button

Hi

It would be nice to have a Sign Button on the Login Page, instead of having the Link in Text, it seems like this is the only way new visitors can get signed up, and it needs to get more exposure, a Button with a different color would work great.

See Screen Shot


You can change ALL links in your app to buttons with css using '.kn-scene a'

Here's a sample that turns all links into big orange buttons:

.kn-scene a {
  background: #d97b34;
  background-image: -webkit-linear-gradient(top, #d97b34, #b5672f);
  background-image: -moz-linear-gradient(top, #d97b34, #b5672f);
  background-image: -ms-linear-gradient(top, #d97b34, #b5672f);
  background-image: -o-linear-gradient(top, #d97b34, #b5672f);
  background-image: linear-gradient(to bottom, #d97b34, #b5672f);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.kn-scene a:hover {
background: #f08843;
background-image: -webkit-linear-gradient(top, #f08843, #d68246);
background-image: -moz-linear-gradient(top, #f08843, #d68246);
background-image: -ms-linear-gradient(top, #f08843, #d68246);
background-image: -o-linear-gradient(top, #f08843, #d68246);
background-image: linear-gradient(to bottom, #f08843, #d68246);
text-decoration: none;
}