You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
491 B
15 lines
491 B
4 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="container" align="center">
|
||
|
<div class="row">
|
||
|
<div class="col-md-6 mx-md-auto">
|
||
|
<form action="" method="post" novalidate >
|
||
|
<textarea class="form-control" rows="12" name="text" style="width: 100% ; height: 100%" ></textarea>
|
||
|
<input type="submit" value="Metni incele" class="btn btn-primary btn-block">
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|