@baris said in Making a topic content NOT mandatory:
Try with this change https://github.com/NodeBB/NodeBB/commit/8c762d3228ee622984a6eb4bad5cbec810c27e60 and let me know.
It works!
Thanks a lot @baris
This should be so easy but somehow I don't get it. I'd like to do a Login Form on my landing page but just fail. First thought was c/p login.tpl in a panel but that didn't work so I tried to fill a simple bootstrap form with the needed tags and informations. Please have a look:
<div class="col-sm-4"> <div class="form-group"> <input class="form-control" placeholder="Username/E-Mail" name="username" type="text" autocorrect="off" autocapitalize="off"> </div> <div class="form-group"> <input class="form-control" placeholder="Passwort" name="password" type="password" id="password"> </div> <div class="form-group"> <button class="btn btn-primary btn-lg btn-block" id="login" type="submit">Login</button> </div> <a href="/register" class="btn btn-success btn-lg btn-block" role="button">Registrieren</a> </div>