2018-12-12 14:34:39 +01:00
|
|
|
const CreateMsgRouter = {
|
|
|
|
template: `
|
|
|
|
<div class="card om-card">
|
|
|
|
<h5>Neue Nachricht erstellen</h5>
|
|
|
|
<form class="new-msg-form" action="#" methord="GET">
|
|
|
|
<div class="form-group bmd-form-group">
|
|
|
|
<label class="bmd-label-floating">Betreff</label>
|
|
|
|
<input type="text" class="form-control" id="subject">
|
|
|
|
</div>
|
|
|
|
<div class="form-group bmd-form-group">
|
|
|
|
<label class="bmd-label-floating">Tags</label>
|
|
|
|
<input type="text" class="form-control" id="hashtags">
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="bmd-label-floating">Nachricht</label>
|
|
|
|
<textarea class="form-control" id="message" rows="5"></textarea>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
<input type="checkbox"> Zusätzlich als E-mail versenden
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-12-18 09:20:13 +01:00
|
|
|
<button class="btn btn-default"><a @click="$router.go(-1)">ABBRECHEN </a></button>
|
2018-12-12 14:34:39 +01:00
|
|
|
<button type="submit" class="btn btn-raised om-btn">SENDEN</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
`,
|
|
|
|
data: function () {
|
2018-12-12 15:56:09 +01:00
|
|
|
return {};
|
2018-12-12 14:34:39 +01:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
},
|
2019-01-16 17:38:57 +01:00
|
|
|
mounted: function() {
|
|
|
|
if ($(this).bootstrapMaterialDesign)
|
|
|
|
$(this).bootstrapMaterialDesign();
|
|
|
|
},
|
2018-12-12 14:34:39 +01:00
|
|
|
};
|